From 0d79c370e35552a793e71413197a6291390fb279 Mon Sep 17 00:00:00 2001 From: Joshua Parkin Date: Thu, 23 Feb 2023 14:23:45 +0000 Subject: [PATCH 1/2] fix windows ad4m-host path --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 147692b52..b61d62be7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -158,8 +158,8 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ needs.create-release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: /home/runner/work/ad4m/ad4m/host/dist/ad4m-windows-x64 - asset_name: ad4m-windows-${{ steps.extract_version.outputs.version }}-x64 + asset_path: /home/runner/work/ad4m/ad4m/host/dist/ad4m-windows-x64.exe + asset_name: ad4m-windows-${{ steps.extract_version.outputs.version }}-x64.exe asset_content_type: application/octet-stream # - name: "Upload built AD4MIN" From 77d709466dc22e83b1927fca27e840a87b7bdf6d Mon Sep 17 00:00:00 2001 From: Joshua Parkin Date: Thu, 23 Feb 2023 14:23:52 +0000 Subject: [PATCH 2/2] actually put the version numbers... --- Cargo.lock | 6 +++--- cli/Cargo.toml | 4 ++-- connect/package.json | 2 +- core/package.json | 2 +- docs-src/book.json | 2 +- executor/package.json | 2 +- executor/src/core/Config.ts | 2 +- host/package.json | 2 +- package.json | 2 +- rust-client/Cargo.toml | 2 +- ui/package.json | 2 +- ui/src-tauri/Cargo.toml | 2 +- ui/src-tauri/tauri.conf.json | 2 +- 13 files changed, 16 insertions(+), 16 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5ddf87303..aeff08e9e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -10,7 +10,7 @@ checksum = "fe438c63458706e03479442743baae6c88256498e6431708f6dfc520a26515d3" [[package]] name = "ad4m" -version = "0.2.14" +version = "0.2.15" dependencies = [ "ad4m-client", "anyhow", @@ -32,7 +32,7 @@ dependencies = [ [[package]] name = "ad4m-client" -version = "0.2.14" +version = "0.2.15" dependencies = [ "anyhow", "async-std", @@ -59,7 +59,7 @@ dependencies = [ [[package]] name = "ad4m-launcher" -version = "0.2.14" +version = "0.2.15" dependencies = [ "ad4m-client", "directories", diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 96773ec5b..99fe5d792 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ad4m" -version = "0.2.14" +version = "0.2.15" edition = "2021" authors = ["Nicolas Luck "] description = "A command-line interface to AD4M (i.e. the AD4M executor) - https://ad4m.dev" @@ -12,7 +12,7 @@ documentation = "https://docs.ad4m.dev" readme = "README.md" [dependencies] -ad4m-client = { path = "../rust-client", version = "0.2.14" } +ad4m-client = { path = "../rust-client", version = "0.2.15" } anyhow = "1.0.65" clap = { version = "4.0.8", features = ["derive"] } futures = "0.3" diff --git a/connect/package.json b/connect/package.json index 5eb8a68f5..0b58a6677 100644 --- a/connect/package.json +++ b/connect/package.json @@ -1,6 +1,6 @@ { "name": "@perspect3vism/ad4m-connect", - "version": "0.2.14", + "version": "0.2.15", "description": "Lib for handling everything needed to setup a connection to a local or remote ad4m-executor", "license": "CAL-1.0", "main": "dist/web.js", diff --git a/core/package.json b/core/package.json index 91d73f814..38455cba8 100644 --- a/core/package.json +++ b/core/package.json @@ -1,6 +1,6 @@ { "name": "@perspect3vism/ad4m", - "version": "0.2.14", + "version": "0.2.15", "description": "*The Agent-Centric Distributed Application Meta-ontology* or just: *Agent-Centric DApp Meta-ontology* * A new meta-ontology for interoperable, decentralized application design * A spanning-layer to enable seamless integration between Holochain DNAs, blockchains, linked-data structures/ontologies and centralized back-ends * The basis for turning distinct, monolithic and siloed apps into a global, open and interoperable sense-making network", "main": "lib/index.cjs", "module": "lib/index.js", diff --git a/docs-src/book.json b/docs-src/book.json index c4b6eb124..2f60c47aa 100644 --- a/docs-src/book.json +++ b/docs-src/book.json @@ -2,6 +2,6 @@ "title": "AD4M Documentation", "author": "Nicolas Luck", "variables": { - "ad4mVersion": "0.2.14" + "ad4mVersion": "0.2.15" } } diff --git a/executor/package.json b/executor/package.json index b22f54c8c..15d319c58 100644 --- a/executor/package.json +++ b/executor/package.json @@ -1,6 +1,6 @@ { "name": "@perspect3vism/ad4m-executor", - "version": "0.2.14", + "version": "0.2.15", "description": "Node.js package that allows the running/interfacing of AD4M Languages & Perspectives.", "main": "lib/main.js", "files": [ diff --git a/executor/src/core/Config.ts b/executor/src/core/Config.ts index b696c96b7..a0c115561 100644 --- a/executor/src/core/Config.ts +++ b/executor/src/core/Config.ts @@ -2,7 +2,7 @@ import * as path from 'path'; import * as fs from 'fs'; import { Address, Expression } from '@perspect3vism/ad4m'; -export let ad4mExecutorVersion = "0.2.14"; +export let ad4mExecutorVersion = "0.2.15"; export let agentLanguageAlias = "did"; export let languageLanguageAlias = "lang"; export let neighbourhoodLanguageAlias = "neighbourhood"; diff --git a/host/package.json b/host/package.json index 54eca5d34..914f4d537 100644 --- a/host/package.json +++ b/host/package.json @@ -1,6 +1,6 @@ { "name": "ad4m-host", - "version": "0.2.14", + "version": "0.2.15", "description": "Self hosting ad4m service", "private": true, "bin": { diff --git a/package.json b/package.json index 36e51d66f..2e6929437 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ad4m-monorepo", - "version": "0.2.14", + "version": "0.2.15", "workspaces": [ "core", "docs", diff --git a/rust-client/Cargo.toml b/rust-client/Cargo.toml index a088fbc7a..451788bcd 100644 --- a/rust-client/Cargo.toml +++ b/rust-client/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ad4m-client" -version = "0.2.14" +version = "0.2.15" edition = "2021" authors = ["Nicolas Luck "] description = "Client library wrapping AD4M's GraphQL interface" diff --git a/ui/package.json b/ui/package.json index 232cd5f90..4ba3e98e5 100644 --- a/ui/package.json +++ b/ui/package.json @@ -1,6 +1,6 @@ { "name": "ad4m-launcher", - "version": "0.2.14", + "version": "0.2.15", "private": true, "type": "module", "dependencies": { diff --git a/ui/src-tauri/Cargo.toml b/ui/src-tauri/Cargo.toml index 13973a618..a06aedb74 100644 --- a/ui/src-tauri/Cargo.toml +++ b/ui/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "ad4m-launcher" -version = "0.2.14" +version = "0.2.15" description = "Administration of ad4m services" authors = ["Kaichao Sun"] license = "" diff --git a/ui/src-tauri/tauri.conf.json b/ui/src-tauri/tauri.conf.json index facb70b5b..217678f11 100644 --- a/ui/src-tauri/tauri.conf.json +++ b/ui/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "package": { "productName": "AD4M", - "version": "0.2.14" + "version": "0.2.15" }, "build": { "distDir": "../dist",