Skip to content

Commit

Permalink
Merge pull request #342 from perspect3vism/release-v0.3.4
Browse files Browse the repository at this point in the history
Release v0.3.4
  • Loading branch information
jdeepee authored Mar 27, 2023
2 parents 5dccb1f + 524de80 commit 83c9e49
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 19 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,20 @@ This project _loosely_ adheres to [Semantic Versioning](https://semver.org/spec/

### Fixed

## [0.3.4] - 27/03/2023

### Added

### Changed

### Deprecated

### Removed

### Fixed
- Fixed bug where ipfs repo.lock cleanup would use the wrong path
- Bug where last-seen-version would not be written after state cleanup

## [0.3.3] - 27/03/2023

### Added
Expand Down
2 changes: 1 addition & 1 deletion bootstrap-languages/p-diff-sync/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perspect3vism/perspective-diff-sync",
"version": "0.3.3",
"version": "0.3.4",
"description": "An AD4M language for syncing mutations to a share perspective",
"main": "index.js",
"scripts": {
Expand Down
4 changes: 2 additions & 2 deletions cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "ad4m"
version = "0.3.3"
version = "0.3.4"
edition = "2021"
authors = ["Nicolas Luck <nicolas@perspect3vism.org>"]
description = "A command-line interface to AD4M (i.e. the AD4M executor) - https://ad4m.dev"
Expand All @@ -12,7 +12,7 @@ documentation = "https://docs.ad4m.dev"
readme = "README.md"

[dependencies]
ad4m-client = { path = "../rust-client", version = "0.3.3" }
ad4m-client = { path = "../rust-client", version = "0.3.4" }
anyhow = "1.0.65"
clap = { version = "4.0.8", features = ["derive"] }
futures = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion connect/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perspect3vism/ad4m-connect",
"version": "0.3.3",
"version": "0.3.4",
"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",
Expand Down
2 changes: 1 addition & 1 deletion core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perspect3vism/ad4m",
"version": "0.3.3",
"version": "0.3.4",
"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",
Expand Down
2 changes: 1 addition & 1 deletion docs-src/book.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
"title": "AD4M Documentation",
"author": "Nicolas Luck",
"variables": {
"ad4mVersion": "0.3.3"
"ad4mVersion": "0.3.4"
}
}
2 changes: 1 addition & 1 deletion executor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perspect3vism/ad4m-executor",
"version": "0.3.3",
"version": "0.3.4",
"description": "Node.js package that allows the running/interfacing of AD4M Languages & Perspectives.",
"main": "lib/main.js",
"files": [
Expand Down
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 'path';
import * as fs from 'fs';
import { Address, Expression } from '@perspect3vism/ad4m';

export let ad4mExecutorVersion = "0.3.3";
export let ad4mExecutorVersion = "0.3.4";
export let agentLanguageAlias = "did";
export let languageLanguageAlias = "lang";
export let neighbourhoodLanguageAlias = "neighbourhood";
Expand Down
2 changes: 1 addition & 1 deletion host/oldestSupportedVersion.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export default function oldestSupportedVersion() {
return {"version": "0.3.3", "shouldClearState": true}
return {"version": "0.3.4", "shouldClearState": true}
}
2 changes: 1 addition & 1 deletion host/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ad4m-host",
"version": "0.3.3",
"version": "0.3.4",
"description": "Self hosting ad4m service",
"private": true,
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ad4m-monorepo",
"version": "0.3.3",
"version": "0.3.4",
"workspaces": [
"core",
"docs",
Expand Down
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.3.3"
version = "0.3.4"
edition = "2021"
authors = ["Nicolas Luck <nicolas@perspect3vism.org>"]
description = "Client library wrapping AD4M's GraphQL interface"
Expand Down
4 changes: 2 additions & 2 deletions test-runner/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# AD4M Test

This is a testing library for testing languages for ad4m. This package internally uses [ad4m-host v0.0.9](https://github.com/fluxsocial/ad4m-host/) to start and interact with ad4m-executor. For more detailed example look go [here](https://github.com/perspect3vism/ad4m-test/tree/main/example)
This is a testing library for testing languages for ad4m. This package internally uses ad4m-host (https://github.com/perspect3vism/ad4m/tree/dev/host) to start and interact with ad4m-executor. For more detailed example look go [here](https://github.com/perspect3vism/ad4m/tree/dev/test-runner/example)

## Usage

Expand All @@ -21,7 +21,7 @@ You can write tests like you would with any other testing framework. You can use
**example**

```js
const { spawnExpressionAgent, spawnLinkAgent } = require('ad4m-test/helpers')
const { spawnExpressionAgent, spawnLinkAgent } = require('@perspect3vism/ad4m-test/helpers')

describe("Expression", () => {
it("Create Expression", async () => {
Expand Down
4 changes: 2 additions & 2 deletions test-runner/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perspect3vism/ad4m-test",
"version": "0.3.3",
"version": "0.3.4",
"description": "Testing library to test ad4m languages",
"license": "MIT",
"bin": "./build/cli.js",
Expand All @@ -9,7 +9,7 @@
"build:util": "browserify build/client.js --standalone Bundle -p esmify > public/client.js",
"test": "yarn run test-expression",
"test-expression": "node build/cli.js --test ./example/expression.test.js --bundle \"example/languages/note-ipfs.js\" --meta '{\"name\":\"note-ipfs\",\"description\":\"IPFS based language for storing data\",\"sourceCodeLink\":\"https://github.com/perspect3vism/note-ipfs\",\"possibleTemplateParams\":[\"uid\",\"name\"]}'",
"test-link": "node build/cli.js --languageType linkLanguage --test ./example/link.test.js --bundle \"example/languages/social-context.js\" --meta '{\"name\":\"social-context\",\"description\":\"Shortform expression for flux application\",\"sourceCodeLink\":\"https://github.com/juntofoundation/ad4m-languages\",\"possibleTemplateParams\":[\"uid\",\"name\"]}'",
"test-link": "node build/cli.js --test ./example/link.test.js --bundle \"example/languages/social-context.js\" --meta '{\"name\":\"social-context\",\"description\":\"Shortform expression for flux application\",\"sourceCodeLink\":\"https://github.com/juntofoundation/ad4m-languages\",\"possibleTemplateParams\":[\"uid\",\"name\"]}'",
"test-ui": "node build/cli.js --ui --bundle \"example/languages/note-ipfs.js\" --meta '{\"name\":\"note-ipfs\",\"description\":\"Shortform expression for flux application\",\"sourceCodeLink\":\"https://github.com/juntofoundation/ad4m-languages\",\"possibleTemplateParams\":[\"uid\",\"name\"]}'",
"ad4m-test": "./build/cli.js",
"postinstall": "node ./scripts/get-builtin-test-langs.js"
Expand Down
2 changes: 1 addition & 1 deletion ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "ad4m-launcher",
"version": "0.3.3",
"version": "0.3.4",
"private": true,
"type": "module",
"dependencies": {
Expand Down
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.3.3"
version = "0.3.4"
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": "AD4M",
"version": "0.3.3"
"version": "0.3.4"
},
"build": {
"distDir": "../dist",
Expand Down

0 comments on commit 83c9e49

Please sign in to comment.