Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
jobs:
scala-maven-release:
name: Maven Release
uses: guardian/gha-scala-library-release-workflow/.github/workflows/reusable-release.yml@v1
uses: guardian/gha-scala-library-release-workflow/.github/workflows/reusable-release.yml@v2
permissions: { contents: write, pull-requests: write }
secrets:
SONATYPE_TOKEN: ${{ secrets.AUTOMATED_MAVEN_RELEASE_SONATYPE_TOKEN }}
Expand Down
10 changes: 10 additions & 0 deletions models/src/main/thrift/content/v1.thrift
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,12 @@ struct PullquoteElementFields {

enum LinkType {
PRODUCT_BUTTON = 0,
STANDARD_BUTTON = 1
}

enum VisualHierarchyImportance {
PRIMARY = 1
SECONDARY = 2
}

struct LinkElementFields {
Expand All @@ -455,6 +461,10 @@ struct LinkElementFields {
2: optional string url;

3: optional LinkType linkType;

4: optional VisualHierarchyImportance importance;

5: optional bool openTargetInNewWindow;
}

struct TweetElementFields {
Expand Down
5 changes: 2 additions & 3 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.1.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.0")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.10")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.3.5")

addSbtPlugin("com.twitter" % "scrooge-sbt-plugin" % "22.1.0")
Expand Down
2 changes: 1 addition & 1 deletion version.sbt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ThisBuild / version := "33.0.1-SNAPSHOT"
ThisBuild / version := "34.0.1-SNAPSHOT"