Skip to content

Commit

Permalink
docs: Add release notes for Metals 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
tgodzik committed Jul 19, 2023
1 parent 11e52f9 commit 08d89cb
Show file tree
Hide file tree
Showing 6 changed files with 873 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ body:
id: version
attributes:
label: Version of Metals
placeholder: v0.11.12
placeholder: v1.0.0
validations:
required: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/mtags-auto-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,14 @@ on:
metals_version:
description: "Metals Version"
required: true
default: "v0.11.12"
default: "v1.0.0"
metals_ref:
description: "Tag/branch-name from which run release"
required: true
# If you update this line after release
# just put the tag name (`v*.*.*`) here as in `metals_version.value` above.
# Don't be confused if this value contains `*.*.*_mtags_release`
default: "0.11.12_mtags_release"
default: "v1.0.0"
jobs:
test_and_release:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions bin/merged_prs.scala
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
//> using scala "3.2.2"
//> using dep "org.kohsuke:github-api:1.314"
//> using dep "org.kohsuke:github-api:1.315"
//> using dep "com.lihaoyi::os-lib:0.9.1"
//> using options "-Wunused:all", "-deprecation"

Expand All @@ -12,7 +12,7 @@ import org.kohsuke.github.GitHubBuilder
import java.text.SimpleDateFormat
import java.util.Date

val codename = "Aluminium"
val codename = "Silver"

@main
def main(
Expand Down
2 changes: 0 additions & 2 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@ suffix=${argumentsRest:-}

coursier fetch \
org.scalameta:metals_2.13:$version \
org.scalameta:mtags_3.0.1:$version \
org.scalameta:mtags_3.0.2:$version \
org.scalameta:mtags_3.1.0:$version \
org.scalameta:mtags_3.1.1:$version \
org.scalameta:mtags_3.1.2:$version \
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Global / onChangedBuildSource := ReloadOnSourceChanges
Global / resolvers += "scala-integration" at
"https://scala-ci.typesafe.com/artifactory/scala-integration/"

def localSnapshotVersion = "0.11.13-SNAPSHOT"
def localSnapshotVersion = "1.0.1-SNAPSHOT"
def isCI = System.getenv("CI") != null

def isScala211(v: Option[(Long, Long)]): Boolean = v.contains((2, 11))
Expand Down
Loading

0 comments on commit 08d89cb

Please sign in to comment.