Skip to content

Commit 8204cd1

Browse files
authored
Bump version to 3.5.0 (#1901)
1 parent 4362fb1 commit 8204cd1

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

RELEASE_NOTES.md

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

3+
# 3.5.0
4+
35
- 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)
46
- feat: The keyword syntax for functions will change in Dafny version 4. The new command-line option `/functionSyntax` (see `/help`) allows early adoption of the new syntax. (https://github.com/dafny-lang/dafny/pull/1832)
57
- feat: Attribute `{:print}` declares that a method may have print effects. Print effects are enforced only with `/trackPrintEffects:1`.

Source/version.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
using System.Reflection;
2-
// Version 3.4.2, year 2018+4 month 2 day 21
3-
[assembly: AssemblyVersion("3.4.2.40221")]
4-
[assembly: AssemblyFileVersion("3.4.2.40221")]
2+
// Version 3.5.0, year 2018+4 month 3 day 14
3+
[assembly: AssemblyVersion("3.5.0.40314")]
4+
[assembly: AssemblyFileVersion("3.5.0.40314")]

0 commit comments

Comments
 (0)