Skip to content

Commit

Permalink
rc5
Browse files Browse the repository at this point in the history
  • Loading branch information
lucksus committed Mar 21, 2024
1 parent 65120d8 commit 696d457
Show file tree
Hide file tree
Showing 24 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion ad4m-hooks/helpers/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coasys/hooks-helpers",
"version": "0.9.0-rc4",
"version": "0.9.0-rc5",
"description": "",
"main": "./src/index.ts",
"module": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion ad4m-hooks/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coasys/ad4m-react-hooks",
"version": "0.9.0-rc4",
"version": "0.9.0-rc5",
"description": "",
"main": "./src/index.ts",
"module": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion ad4m-hooks/vue/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@coasys/ad4m-vue-hooks",
"version": "0.9.0-rc4",
"version": "0.9.0-rc5",
"description": "",
"main": "./src/index.ts",
"module": "./src/index.ts",
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-languages/agent-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,5 +44,5 @@
"md5": "^2.3.0",
"postcss": "^8.2.1"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion bootstrap-languages/direct-message-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,5 @@
"dependencies": {
"@types/node": "^18.0.0"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion bootstrap-languages/neighbourhood-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,5 @@
},
"author": "[email protected]",
"license": "ISC",
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion bootstrap-languages/p-diff-sync/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,5 @@
"devDependencies": {
"run-script-os": "^1.1.6"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion bootstrap-languages/perspective-language/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,5 @@
"typescript": "^4.5.5",
"uint8arrays": "^3.0.0"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ad4m"

version = "0.9.0-rc4"
version = "0.9.0-rc5"

edition = "2021"
authors = ["Nicolas Luck <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion connect/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,5 +66,5 @@
"esbuild-plugin-replace": "^1.4.0",
"lit": "^2.3.1"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"@types/yargs": "*"
},
"patchedDependencies": {},
"version": "0.9.0-rc4",
"version": "0.9.0-rc5",
"pnpm": {
"patchedDependencies": {
"[email protected]": "patches/[email protected]"
Expand Down
2 changes: 1 addition & 1 deletion docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
"typedoc-plugin-markdown": "^3.15.2",
"typescript": "^4.9.3"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion executor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,5 +78,5 @@
"tmp": "^0.2.1",
"uuid": "*"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion executor/src/core/Config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as path from 'node:path';
import * as fs from 'node:fs';
import { Address, Expression } from '@coasys/ad4m';

export let ad4mExecutorVersion = "0.9.0-rc4";
export let ad4mExecutorVersion = "0.9.0-rc5";
export let agentLanguageAlias = "did";
export let languageLanguageAlias = "lang";
export let neighbourhoodLanguageAlias = "neighbourhood";
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -93,5 +93,5 @@
"[email protected]": "patches/[email protected]"
}
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion rust-client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ad4m-client"
version = "0.9.0-rc4"
version = "0.9.0-rc5"
edition = "2021"
authors = ["Nicolas Luck <[email protected]>"]
description = "Client library wrapping AD4M's GraphQL interface"
Expand Down
2 changes: 1 addition & 1 deletion rust-executor/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rust-executor"
version = "0.9.0-rc4"
version = "0.9.0-rc5"
edition = "2021"
authors = ["Nicolas Luck <[email protected]>"]
description = "A command-line interface to AD4M (i.e. the AD4M executor) - https://ad4m.dev"
Expand Down
2 changes: 1 addition & 1 deletion rust-executor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
"@coasys/ad4m-executor": "link:../core"
},
"dependencies": {},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion rust-executor/src/globals.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ use lazy_static::lazy_static;

lazy_static! {
/// The current version of AD4M
pub static ref AD4M_VERSION: String = String::from("0.9.0-rc4");
pub static ref AD4M_VERSION: String = String::from("0.9.0-rc5");
}

/// Struct representing oldest supported version and indicator if state should be cleared if update is required
Expand Down
2 changes: 1 addition & 1 deletion test-runner/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,5 @@
"bugs": {
"url": "https://github.com/perspect3vism/ad4m-test/issues"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion tests/js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,5 +60,5 @@
"dependencies": {
"uuid": "*"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@
"resolutions": {
"react-error-overlay": "6.0.9"
},
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
}
2 changes: 1 addition & 1 deletion ui/src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ad4m-launcher"
version = "0.9.0-rc4"
version = "0.9.0-rc5"
description = "Administration of ad4m services"
authors = ["Kaichao Sun"]
license = ""
Expand Down
2 changes: 1 addition & 1 deletion ui/src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"package": {
"productName": "ADAM Launcher",
"version": "0.9.0-rc4"
"version": "0.9.0-rc5"
},
"build": {
"distDir": "../dist",
Expand Down

0 comments on commit 696d457

Please sign in to comment.