Skip to content

Commit ff6902a

Browse files
authored
chore: Bump version to 3.7.0 (#2272)
1 parent 6797fb1 commit ff6902a

File tree

5 files changed

+17
-13
lines changed

5 files changed

+17
-13
lines changed

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
* `Source/DafnyDriver/DafnyDriver.csproj`
2525

26-
* `Source/DafnyLanguageServer/DafnyLanguageServer.csproj`
26+
* `Source/Dafny/DafnyPipeline.csproj`
2727

2828
Put the public version number in place of the "Upcoming" header in
2929
`RELEASE_NOTES.md`, and add a new "Upcoming" header above it.

RELEASE_NOTES.md

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
# Upcoming
22

3-
- feat: The IDE will show verification errors for a method immediately after that method has been verified, instead of after all methods are verified.
4-
- feat: The Dafny CLI, Dafny as a library, and the C# runtime are now available on NuGet. You can install the CLI with `dotnet tool install --global Dafny`. The library is available as `DafnyPipeline` and the runtime is available as `DafnyRuntime`.
5-
- feat: New syntax for quantified variables, allowing per-variable domains (`x <- C`) and ranges (`x | P(x), y | Q(x, y)`). See [the quantifier domain section](https://dafny-lang.github.io/dafny/DafnyRef/DafnyRef#sec-quantifier-domains) of the Reference Manual.
6-
- fix: Various improvements to language server robustness
7-
- fix: No more display of previous obsolete verification diagnostics if newer are available. (https://github.com/dafny-lang/dafny/pull/2142)
8-
- feat: Live verification diagnostics for the language server (https://github.com/dafny-lang/dafny/pull/1942)
9-
- fix: Prevent the language server from crashing and not responding on resolution or ghost diagnostics errors (https://github.com/dafny-lang/dafny/pull/2080)
3+
# 3.7.0
4+
5+
- feat: The Dafny CLI, Dafny as a library, and the C# runtime are now available on NuGet. You can install the CLI with `dotnet tool install --global Dafny`. The library is available as `DafnyPipeline` and the runtime is available as `DafnyRuntime`. (https://github.com/dafny-lang/dafny/pull/2051)
6+
- feat: New syntax for quantified variables, allowing per-variable domains (`x <- C`) and ranges (`x | P(x), y | Q(x, y)`). See [the quantifier domain section](https://dafny.org/dafny/DafnyRef/DafnyRef#sec-quantifier-domains) of the Reference Manual. (https://github.com/dafny-lang/dafny/pull/2195)
7+
- feat: The IDE will show verification errors for a method immediately after that method has been verified, instead of after all methods are verified. (https://github.com/dafny-lang/dafny/pull/2142)
108
- feat: Added "Resolving..." message for IDE extensions (https://github.com/dafny-lang/dafny/pull/2234)
9+
- feat: Live verification diagnostics for the language server (https://github.com/dafny-lang/dafny/pull/1942)
1110
- fix: Correctly specify the type of the receiver parameter when translating tail-recursive member functions to C# (https://github.com/dafny-lang/dafny/pull/2205)
1211
- fix: Added support for type parameters in automatically generated tests (https://github.com/dafny-lang/dafny/pull/2227)
12+
- fix: No more display of previous obsolete verification diagnostics if newer are available (https://github.com/dafny-lang/dafny/pull/2142)
13+
- fix: Prevent the language server from crashing and not responding on resolution or ghost diagnostics errors (https://github.com/dafny-lang/dafny/pull/2080)
14+
- fix: Various improvements to language server robustness (https://github.com/dafny-lang/dafny/pull/2254)
15+
1316

1417
# 3.6.0
1518

@@ -39,6 +42,7 @@
3942
- fix: Fix `(!new)` checks (https://github.com/dafny-lang/dafny/issues/1419)
4043
- fix: multiset keyword no longer crashes the parser (https://github.com/dafny-lang/dafny/pull/2079)
4144

45+
4246
# 3.5.0
4347

4448
- feat: `continue` statements. Like Dafny's `break` statements, these come in two forms: one that uses a label to name the continue target and one that specifies the continue target by nesting level. See section [19.2](https://dafny-lang.github.io/dafny/DafnyRef/DafnyRef#sec-break-continue) of the Reference Manual. (https://github.com/dafny-lang/dafny/pull/1839)

Source/Dafny/DafnyPipeline.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
<GenerateAssemblyInfo>false</GenerateAssemblyInfo>
1818
<OutputPath>..\..\Binaries\</OutputPath>
1919
<DefineConstants>TRACE</DefineConstants>
20-
<PackageVersion>3.6.0.40511</PackageVersion>
20+
<PackageVersion>3.7.0.40620</PackageVersion>
2121
<TargetFramework>net6.0</TargetFramework>
2222
</PropertyGroup>
2323

Source/DafnyDriver/DafnyDriver.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<OutputPath>..\..\Binaries\</OutputPath>
1010
<ValidateExecutableReferencesMatchSelfContained>false</ValidateExecutableReferencesMatchSelfContained>
1111

12-
<PackageVersion>3.6.0.40511</PackageVersion>
12+
<PackageVersion>3.7.0.40620</PackageVersion>
1313

1414
<PackAsTool>true</PackAsTool>
1515
<ToolCommandName>dafny</ToolCommandName>

Source/version.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
using System.Reflection;
2-
// Version 3.6.0, year 2018+4, month 5, day 11
2+
// Version 3.7.0, year 2018+4, month 6, day 20
33
// When changing this, also be sure to change it in the following files:
44
// * Source/DafnyDriver/DafnyDriver.csproj
55
// * Source/Dafny/DafnyPipeline.csproj
6-
[assembly: AssemblyVersion("3.6.0.40511")]
7-
[assembly: AssemblyFileVersion("3.6.0.40511")]
6+
[assembly: AssemblyVersion("3.7.0.40620")]
7+
[assembly: AssemblyFileVersion("3.7.0.40620")]

0 commit comments

Comments
 (0)