Skip to content

Commit 3dc2d18

Browse files
billtiDmitry Vasilevsky
andauthored
Bump version to v1.25 (#2864)
Co-authored-by: Dmitry Vasilevsky <dmitryv@microsoft.com>
1 parent 2d7397a commit 3dc2d18

5 files changed

Lines changed: 30 additions & 13 deletions

File tree

library/fixed_point/qsharp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"github": {
77
"owner": "Microsoft",
88
"repo": "qsharp",
9-
"ref": "v1.23.0",
9+
"ref": "v1.25.0",
1010
"path": "library/signed"
1111
}
1212
}

library/signed/qsharp.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"github": {
77
"owner": "Microsoft",
88
"repo": "qsharp",
9-
"ref": "v1.23.0",
9+
"ref": "v1.25.0",
1010
"path": "library/qtest"
1111
}
1212
}

library/table_lookup/qsharp.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
{
2+
"author": "Microsoft",
3+
"license": "MIT",
24
"files": [
35
"src/Lookup.qs",
46
"src/LookupViaPP.qs",

source/vscode/src/registry.json

Lines changed: 25 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
"dependency": {
77
"github": {
88
"owner": "microsoft",
9-
"repo": "qsharp",
9+
"repo": "qdk",
1010
"refs": [
11-
{ "ref": "v1.23.0", "notes": "latest stable" },
11+
{ "ref": "v1.25.0", "notes": "latest stable" },
1212
{ "ref": "main", "notes": "nightly, unstable" }
1313
],
1414
"path": "library/chemistry"
@@ -21,9 +21,9 @@
2121
"dependency": {
2222
"github": {
2323
"owner": "microsoft",
24-
"repo": "qsharp",
24+
"repo": "qdk",
2525
"refs": [
26-
{ "ref": "v1.23.0", "notes": "latest stable" },
26+
{ "ref": "v1.25.0", "notes": "latest stable" },
2727
{ "ref": "main", "notes": "nightly, unstable" }
2828
],
2929
"path": "library/signed"
@@ -36,9 +36,9 @@
3636
"dependency": {
3737
"github": {
3838
"owner": "microsoft",
39-
"repo": "qsharp",
39+
"repo": "qdk",
4040
"refs": [
41-
{ "ref": "v1.23.0", "notes": "latest stable" },
41+
{ "ref": "v1.25.0", "notes": "latest stable" },
4242
{ "ref": "main", "notes": "nightly, unstable" }
4343
],
4444
"path": "library/fixed_point"
@@ -51,9 +51,9 @@
5151
"dependency": {
5252
"github": {
5353
"owner": "microsoft",
54-
"repo": "qsharp",
54+
"repo": "qdk",
5555
"refs": [
56-
{ "ref": "v1.23.0", "notes": "latest stable" },
56+
{ "ref": "v1.25.0", "notes": "latest stable" },
5757
{ "ref": "main", "notes": "nightly, unstable" }
5858
],
5959
"path": "library/rotations"
@@ -66,15 +66,30 @@
6666
"dependency": {
6767
"github": {
6868
"owner": "microsoft",
69-
"repo": "qsharp",
69+
"repo": "qdk",
7070
"refs": [
71-
{ "ref": "v1.23.0", "notes": "latest stable" },
71+
{ "ref": "v1.25.0", "notes": "latest stable" },
7272
{ "ref": "main", "notes": "nightly, unstable" }
7373
],
7474
"path": "library/qtest"
7575
}
7676
}
7777
},
78+
{
79+
"name": "TableLookup",
80+
"description": "Primitives useful to perform computation and uncomputation of table lookup",
81+
"dependency": {
82+
"github": {
83+
"owner": "microsoft",
84+
"repo": "qdk",
85+
"refs": [
86+
{ "ref": "v1.25.0", "notes": "latest stable" },
87+
{ "ref": "main", "notes": "nightly, unstable" }
88+
],
89+
"path": "library/table_lookup"
90+
}
91+
}
92+
},
7893
{
7994
"name": "QuantumArithmetic",
8095
"description": "Quantum arithmetic algorithms",

version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import sys
99

1010
# To be updated every time we start a new major.minor version.
11-
major_minor = "1.23"
11+
major_minor = "1.25"
1212

1313
root_dir = os.path.dirname(os.path.abspath(__file__))
1414
source_dir = os.path.join(root_dir, "source")

0 commit comments

Comments
 (0)