Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion library/fixed_point/qsharp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"github": {
"owner": "Microsoft",
"repo": "qsharp",
"ref": "v1.23.0",
"ref": "v1.25.0",
"path": "library/signed"
}
}
Expand Down
2 changes: 1 addition & 1 deletion library/signed/qsharp.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"github": {
"owner": "Microsoft",
"repo": "qsharp",
"ref": "v1.23.0",
"ref": "v1.25.0",
"path": "library/qtest"
}
}
Expand Down
2 changes: 2 additions & 0 deletions library/table_lookup/qsharp.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
{
"author": "Microsoft",
"license": "MIT",
"files": [
"src/Lookup.qs",
"src/LookupViaPP.qs",
Expand Down
35 changes: 25 additions & 10 deletions source/vscode/src/registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"repo": "qdk",
"refs": [
{ "ref": "v1.23.0", "notes": "latest stable" },
{ "ref": "v1.25.0", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/chemistry"
Expand All @@ -21,9 +21,9 @@
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"repo": "qdk",
"refs": [
{ "ref": "v1.23.0", "notes": "latest stable" },
{ "ref": "v1.25.0", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/signed"
Expand All @@ -36,9 +36,9 @@
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"repo": "qdk",
"refs": [
{ "ref": "v1.23.0", "notes": "latest stable" },
{ "ref": "v1.25.0", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/fixed_point"
Expand All @@ -51,9 +51,9 @@
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"repo": "qdk",
"refs": [
{ "ref": "v1.23.0", "notes": "latest stable" },
{ "ref": "v1.25.0", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/rotations"
Expand All @@ -66,15 +66,30 @@
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"repo": "qdk",
"refs": [
{ "ref": "v1.23.0", "notes": "latest stable" },
{ "ref": "v1.25.0", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/qtest"
}
}
},
{
"name": "TableLookup",
"description": "Primitives useful to perform computation and uncomputation of table lookup",
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qdk",
"refs": [
{ "ref": "v1.25.0", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/table_lookup"
}
}
},
{
"name": "QuantumArithmetic",
"description": "Quantum arithmetic algorithms",
Expand Down
2 changes: 1 addition & 1 deletion version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import sys

# To be updated every time we start a new major.minor version.
major_minor = "1.23"
major_minor = "1.25"

root_dir = os.path.dirname(os.path.abspath(__file__))
source_dir = os.path.join(root_dir, "source")
Expand Down
Loading