Skip to content

Commit

Permalink
chore: Add 1.2.2 release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
jkciesluk committed Feb 15, 2024
1 parent e65409f commit 3c75efc
Show file tree
Hide file tree
Showing 4 changed files with 107 additions and 5 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: v1.2.1
placeholder: v1.2.2
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: "v1.2.1"
default: "v1.2.2"
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: "v1.2.1"
default: "v1.2.2"
jobs:
test_and_release:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions 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 = "1.2.2-SNAPSHOT"
def localSnapshotVersion = "1.2.3-SNAPSHOT"
def isCI = System.getenv("CI") != null

def isScala211(v: Option[(Long, Long)]): Boolean = v.contains((2, 11))
Expand Down Expand Up @@ -238,7 +238,7 @@ lazy val interfaces = project
moduleName := "mtags-interfaces",
autoScalaLibrary := false,
mimaPreviousArtifacts := Set(
"org.scalameta" % "mtags-interfaces" % "1.2.0"
"org.scalameta" % "mtags-interfaces" % "1.2.1"
),
crossPaths := false,
libraryDependencies ++= List(
Expand Down
102 changes: 102 additions & 0 deletions website/blog/2024-02-15-bismuth.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,102 @@
---
author: Jakub Ciesluk
title: Metals v1.2.2 - Bismuth
authorURL: https://github.com/jkciesluk
authorImageURL: https://github.com/jkciesluk.png
---

We're happy to announce the release of Metals v1.2.2, which fixes broken sbt builds on Windows.

<table>
<tbody>
<tr>
<td>Commits since last release</td>
<td align="center">9</td>
</tr>
<tr>
<td>Merged PRs</td>
<td align="center">9</td>
</tr>
<tr>
<td>Contributors</td>
<td align="center">4</td>
</tr>
<tr>
<td>Closed issues</td>
<td align="center">4</td>
</tr>
</tbody>
</table>

For full details: [https://github.com/scalameta/metals/milestone/64?closed=1](https://github.com/scalameta/metals/milestone/64?closed=1)

Metals is a language server for Scala that works with VS Code, Vim, Emacs and
Sublime Text. Metals is developed at the
[Scala Center](https://scala.epfl.ch/) and [VirtusLab](https://virtuslab.com)
with the help from contributors from the community.

## TL;DR

Check out [https://scalameta.org/metals/](https://scalameta.org/metals/), and
give Metals a try!

- [Fix sbt builds on Windows](#fix-sbt-builds-on-windows)

## Fix sbt builds on Windows

Previous release unintentionally stopped some sbt projects on Windows from importing. In this release we revert the breaking changes.

## Miscellaneous

- bugfix: Deduplicate references results. [kasiaMarek](https://github.com/kasiaMarek)
- bugfix: Don't rename package when it did not change. [kasiaMarek](https://github.com/kasiaMarek)
- bugfix: properly resolve build targets for references search. [kasiaMarek](https://github.com/kasiaMarek)
- bugfix: Allow Scala 2.11 to be run on newer JVMs. [tgodzik](https://github.com/tgodzik)

## Contributors

Big thanks to everybody who contributed to this release or reported an issue!

```
$ git shortlog -sn --no-merges v1.2.1..v1.2.2
5 Katarzyna Marek
2 Scalameta Bot
1 Jakub Ciesluk
1 Tomasz Godzik
```

## Merged PRs

## [v1.2.2](https://github.com/scalameta/metals/tree/v1.2.2) (2024-02-15)

[Full Changelog](https://github.com/scalameta/metals/compare/v1.2.1...v1.2.2)

**Merged pull requests:**

- bugfix: deduplicate references results
[\#6116](https://github.com/scalameta/metals/pull/6116)
([kasiaMarek](https://github.com/kasiaMarek))
- bugfix: don't rename package when it did not change
[\#6115](https://github.com/scalameta/metals/pull/6115)
([kasiaMarek](https://github.com/kasiaMarek))
- chore: Fix CI after changes in dotty
[\#6113](https://github.com/scalameta/metals/pull/6113)
([jkciesluk](https://github.com/jkciesluk))
- bugfix: properly resolve build targets for references search
[\#6103](https://github.com/scalameta/metals/pull/6103)
([kasiaMarek](https://github.com/kasiaMarek))
- bugfix: revert back to using embedded `sbt` launcher for Windows
[\#6111](https://github.com/scalameta/metals/pull/6111)
([kasiaMarek](https://github.com/kasiaMarek))
- build(deps): Update coursier, ... from 2.1.8 to 2.1.9
[\#6106](https://github.com/scalameta/metals/pull/6106)
([scalameta-bot](https://github.com/scalameta-bot))
- build(deps): Update mill-contrib-testng from 0.11.6 to 0.11.7
[\#6105](https://github.com/scalameta/metals/pull/6105)
([scalameta-bot](https://github.com/scalameta-bot))
- bugfix: Allow Scala 2.11 to be run on newer JVMs
[\#6092](https://github.com/scalameta/metals/pull/6092)
([tgodzik](https://github.com/tgodzik))
- release notes 1.2.1
[\#6091](https://github.com/scalameta/metals/pull/6091)
([kasiaMarek](https://github.com/kasiaMarek))

0 comments on commit 3c75efc

Please sign in to comment.