Skip to content

Commit 6cb34c1

Browse files
committed
Upgrade version number to 4.10.0
1 parent f862d08 commit 6cb34c1

File tree

20 files changed

+10
-10
lines changed

20 files changed

+10
-10
lines changed

Source/DafnyPipeline/DafnyPipeline.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@
8989
<LinkBase>DafnyRuntimeJava</LinkBase>
9090
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
9191
</EmbeddedResource>
92-
<EmbeddedResource Include="..\DafnyRuntime\DafnyRuntimeJava\build\libs\DafnyRuntime-4.9.2.jar">
92+
<EmbeddedResource Include="..\DafnyRuntime\DafnyRuntimeJava\build\libs\DafnyRuntime-4.10.0.jar">
9393
<LogicalName>DafnyRuntime.jar</LogicalName>
9494
<Link>DafnyRuntime.jar</Link>
9595
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>

Source/DafnyRuntime/DafnyRuntime.csproj

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
</Content>
4848
</ItemGroup>
4949
<PropertyGroup>
50-
<DafnyRuntimeJar>DafnyRuntimeJava/build/libs/DafnyRuntime-4.9.2.jar</DafnyRuntimeJar>
50+
<DafnyRuntimeJar>DafnyRuntimeJava/build/libs/DafnyRuntime-4.10.0.jar</DafnyRuntimeJar>
5151
</PropertyGroup>
5252
<Target Name="BuildDafnyRuntimeJar" AfterTargets="ResolveReferences" BeforeTargets="CoreCompile" Inputs="$(MSBuildProjectFile);@(DafnyRuntimeJavaInputFile)" Outputs="$(DafnyRuntimeJar)">
5353

Source/DafnyRuntime/DafnyRuntimeJava/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ dependencies {
1717
}
1818

1919
group = 'org.dafny'
20-
version = '4.9.2'
20+
version = '4.10.0'
2121
sourceCompatibility = '1.8'
2222

2323
java {

Source/DafnyRuntime/DafnyRuntimePython/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "DafnyRuntimePython"
3-
version = "4.9.2"
3+
version = "4.10.0"
44
authors = [
55
{ name = "The Dafny core team", email = "[email protected]" },
66
]
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Source/Directory.Build.props

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFramework>net8.0</TargetFramework>
5-
<VersionPrefix>4.9.2</VersionPrefix>
5+
<VersionPrefix>4.10.0</VersionPrefix>
66
<NoWarn>1701;1702;VSTHRD200</NoWarn>
77
</PropertyGroup>
88

Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
file_format_version = "1.0"
2-
dafny_version = "4.9.2.0"
2+
dafny_version = "4.10.0.0"
33
[options_by_module.Foo]

Source/IntegrationTests/TestFiles/LitTests/LitTest/comp/separate-compilation/translation-records/InvalidFormat.dfy.expect

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,5 @@ CLI: Error: malformed dtr file NoGood.dtr
44
Translation was aborted because errors were found
55

66
Dafny program verifier finished with 0 verified, 0 errors
7-
CLI: Error: cannot load WrongDafnyVersion.dtr: it was built with Dafny 10.6.0.0, which cannot be used by Dafny 4.9.2.0
7+
CLI: Error: cannot load WrongDafnyVersion.dtr: it was built with Dafny 10.6.0.0, which cannot be used by Dafny 4.10.0.0
88
Translation was aborted because errors were found
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
file_format_version = "1.0"
2-
dafny_version = "4.9.2.0"
2+
dafny_version = "4.10.0.0"
33
[options_by_module.DafnyModule1]
44
go-module-name = "GoModule1"
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
file_format_version = "1.0"
2-
dafny_version = "4.9.2.0"
2+
dafny_version = "4.10.0.0"
33
[options_by_module.DafnyModule1]
44
python-module-name = "PythonModule1"
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
file_format_version = "1.0"
2-
dafny_version = "4.9.2.0"
2+
dafny_version = "4.10.0.0"
33
[options_by_module."Some.Nested.Module"]
44
python-module-name = "SomeNestedModule"

0 commit comments

Comments
 (0)