Skip to content

Commit

Permalink
Merge pull request #40 from axone-protocol/chore/remove-v-prefix-ts
Browse files Browse the repository at this point in the history
  • Loading branch information
bdeneux authored Jun 28, 2024
2 parents ab1e726 + d53d4c4 commit 0c2e502
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
matrix:
registry:
- url: "https://npm.pkg.github.com"
auth-token-secret: NPM_REGISTRY_TOKEN
auth-token-secret: GITHUB_TOKEN
- url: "https://registry.npmjs.org"
auth-token-secret: NPM_PUBLIC_REGISTRY_TOKEN
schema: ${{ fromJson(needs.schema-matrix.outputs.schema) }}
Expand Down
2 changes: 1 addition & 1 deletion magefiles/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ func parseVersion(tag string) (*Version, error) {
}

func (v *Version) String() string {
return fmt.Sprintf("v%d.%d.%d", v.Major, v.Minor, v.Patch)
return fmt.Sprintf("%d.%d.%d", v.Major, v.Minor, v.Patch)
}

// EnsureGit ensures that git is installed, if not it panics.
Expand Down
2 changes: 1 addition & 1 deletion ts/cognitarium-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axone/cognitarium-schema",
"version": "v3.0.0",
"version": "3.0.0",
"private": false,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion ts/dataverse-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axone/objectarium-dataverse",
"version": "v3.0.0",
"version": "3.0.0",
"private": false,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion ts/law-stone-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axone/law-stone-schema",
"version": "v3.0.0",
"version": "3.0.0",
"private": false,
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion ts/objectarium-schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@axone/objectarium-schema",
"version": "v3.0.0",
"version": "3.0.0",
"private": false,
"repository": {
"type": "git",
Expand Down

0 comments on commit 0c2e502

Please sign in to comment.