Skip to content

Commit

Permalink
Update registry for chemistry (#2161)
Browse files Browse the repository at this point in the history
Also changing the 'stable' reference to point to a tag. (We should
probably auto-bump 'stable' to be the latest release tag for each
release - I'll add a task for that.

Chemistry wasn't in v1.13, so just pointing that to main for now, and
will add a 'stable' tag for next release.
  • Loading branch information
billti authored Feb 5, 2025
1 parent 48400b8 commit f8c794d
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 11 deletions.
4 changes: 2 additions & 2 deletions 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": "3195043",
"ref": "v1.13",
"path": "library/signed"
}
}
Expand All @@ -24,4 +24,4 @@
"src/Tests.qs",
"src/Types.qs"
]
}
}
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": "486616a4",
"ref": "v1.13",
"path": "library/qtest"
}
}
Expand Down
28 changes: 20 additions & 8 deletions vscode/src/registry.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,26 @@
{
"knownPackages": [
{
"name": "Chemistry",
"description": "A collection of Chemistry algorithms and utilities",
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"refs": [{ "ref": "main", "notes": "nightly, unstable" }],
"path": "library/chemistry"
}
}
},
{
"name": "Signed",
"description": "Defines types and functions to work with signed qubit-based integers.",
"description": "Defines types and functions to work with signed qubit-based integers",
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"refs": [
{ "ref": "bd5a09c", "notes": "latest stable" },
{ "ref": "v1.13", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/signed"
Expand All @@ -17,13 +29,13 @@
},
{
"name": "FixedPoint",
"description": "Types and functions for fixed-point arithmetic with qubits.",
"description": "Types and functions for fixed-point arithmetic with qubits",
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"refs": [
{ "ref": "bd5a09c", "notes": "latest stable" },
{ "ref": "v1.13", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/fixed_point"
Expand All @@ -32,13 +44,13 @@
},
{
"name": "Rotations",
"description": "Defines types and functions to work with rotations.",
"description": "Defines types and functions to work with rotations",
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"refs": [
{ "ref": "bd5a09c", "notes": "latest stable" },
{ "ref": "v1.13", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/rotations"
Expand All @@ -47,13 +59,13 @@
},
{
"name": "Qtest",
"description": "Utilities for writing and running Q# tests.",
"description": "Utilities for writing and running Q# tests",
"dependency": {
"github": {
"owner": "microsoft",
"repo": "qsharp",
"refs": [
{ "ref": "bd5a09c", "notes": "latest stable" },
{ "ref": "v1.13", "notes": "latest stable" },
{ "ref": "main", "notes": "nightly, unstable" }
],
"path": "library/qtest"
Expand Down

0 comments on commit f8c794d

Please sign in to comment.