Skip to content

Commit

Permalink
Merge branch 'v6.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
KtorZ committed Sep 10, 2024
2 parents e604718 + 645a43c commit 46ec09c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 6 deletions.
2 changes: 1 addition & 1 deletion clients/TypeScript/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cardano-ogmios",
"version": "6.6.1",
"version": "6.6.2",
"private": true,
"description": "TypeScript monorepo with client libraries for Cardano Ogmios",
"engines": {
Expand Down
4 changes: 2 additions & 2 deletions clients/TypeScript/packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-ogmios/client",
"version": "6.6.1",
"version": "6.6.2",
"description": "TypeScript client library for Cardano Ogmios",
"engines": {
"node": ">=14"
Expand Down Expand Up @@ -47,7 +47,7 @@
"typescript": "^4.2.3"
},
"dependencies": {
"@cardano-ogmios/schema": "6.6.1",
"@cardano-ogmios/schema": "6.6.2",
"@cardanosolutions/json-bigint": "^1.0.1",
"@types/json-bigint": "^1.0.1",
"bech32": "^2.0.0",
Expand Down
4 changes: 2 additions & 2 deletions clients/TypeScript/packages/repl/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-ogmios/repl",
"version": "6.6.1",
"version": "6.6.2",
"description": "REPL for Cardano Ogmios",
"engines": {
"node": ">=14"
Expand Down Expand Up @@ -39,7 +39,7 @@
"typescript": "^4.2.3"
},
"dependencies": {
"@cardano-ogmios/client": "6.6.1",
"@cardano-ogmios/client": "6.6.2",
"yargs-parser": "^20.2.7"
},
"files": [
Expand Down
2 changes: 1 addition & 1 deletion clients/TypeScript/packages/schema/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cardano-ogmios/schema",
"version": "6.6.1",
"version": "6.6.2",
"description": "Generated TypeScript from the Cardano Ogmios schema",
"engines": {
"node": ">=14"
Expand Down
13 changes: 13 additions & 0 deletions server/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,19 @@ dev: # Run local ogmios through cabal
--node-config $(NODE_CFG)/cardano-node/config.json \
--node-socket $(NODE_SOCKET) $(filter-out $@,$(MAKECMDGOALS))

bump: # Bump server & TypeScript client versions.
ifeq ($(VERSION),)
@echo "Missing VERSION argument?"
else
@echo "Bumping versions to $(VERSION)"
@sed -i '' 's/^version:\([^0-9]*\).*/version:\1$(VERSION)/' package.yaml
@sed -i '' 's/^version:\([^0-9]*\).*/version:\1$(VERSION)/' ogmios.cabal
@sed -i '' 's/"version": "[0-9]\.[0-9]\.[0-9]",/"version": "$(VERSION)",/' ../clients/TypeScript/package.json
@sed -i '' 's/"version": "[0-9]\.[0-9]\.[0-9]",/"version": "$(VERSION)",/' ../clients/TypeScript/packages/**/package.json
@sed -i '' 's/\("@cardano-ogmios\/.*":\) "[0-9]\.[0-9]\.[0-9]",/\1 "$(VERSION)",/' ../clients/TypeScript/packages/**/package.json
@echo "All set. Don't forget to ALSO update the asset files for the documentation!"
endif

node: # Run a local node at the specified version.
cardano-node$(NODE_VERSION:-) \
run \
Expand Down

0 comments on commit 46ec09c

Please sign in to comment.