diff --git a/library/fixed_point/qsharp.json b/library/fixed_point/qsharp.json index 91228c995a..f83926c00d 100644 --- a/library/fixed_point/qsharp.json +++ b/library/fixed_point/qsharp.json @@ -6,7 +6,7 @@ "github": { "owner": "Microsoft", "repo": "qsharp", - "ref": "v1.23.0", + "ref": "v1.25.0", "path": "library/signed" } } diff --git a/library/signed/qsharp.json b/library/signed/qsharp.json index dd14d00ba8..c9a0e96353 100644 --- a/library/signed/qsharp.json +++ b/library/signed/qsharp.json @@ -6,7 +6,7 @@ "github": { "owner": "Microsoft", "repo": "qsharp", - "ref": "v1.23.0", + "ref": "v1.25.0", "path": "library/qtest" } } diff --git a/library/table_lookup/qsharp.json b/library/table_lookup/qsharp.json index 4f03cf1bdd..ec3432b56a 100644 --- a/library/table_lookup/qsharp.json +++ b/library/table_lookup/qsharp.json @@ -1,4 +1,6 @@ { + "author": "Microsoft", + "license": "MIT", "files": [ "src/Lookup.qs", "src/LookupViaPP.qs", diff --git a/source/vscode/src/registry.json b/source/vscode/src/registry.json index 4d03499272..4f02d06f1e 100644 --- a/source/vscode/src/registry.json +++ b/source/vscode/src/registry.json @@ -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" @@ -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" @@ -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" @@ -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" @@ -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", diff --git a/version.py b/version.py index 74db2d4798..a22af03901 100755 --- a/version.py +++ b/version.py @@ -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")