Skip to content

Commit

Permalink
Merge pull request #246 from perspect3vism/release-v0.2.12-patch-1
Browse files Browse the repository at this point in the history
Release v0.2.12 patch 1
  • Loading branch information
lucksus authored Feb 14, 2023
2 parents c60cdf4 + 08de315 commit d5766a5
Show file tree
Hide file tree
Showing 15 changed files with 26 additions and 17 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project _loosely_ adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). More specifically:

## [0.2.12-patch-1] - 14/02/2023

### Changed
- Sets last supported version to 0.2.12

###
- Adds new language publishing agent key to trusted agents in boostrap seed

## [0.2.12] - 14/02/2023

### Added
Expand Down
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.2.12"
version = "0.2.12-patch-1"
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.2.12" }
ad4m-client = { path = "../rust-client", version = "0.2.12-patch-1" }
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.2.12",
"version": "0.2.12-patch-1",
"description": "Lib for handling everything needed to setup a connection to a local or remote ad4m-executor",
"license": "CAL-1.0",
"main": "dist/index.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.2.12",
"version": "0.2.12-patch-1",
"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 executor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@perspect3vism/ad4m-executor",
"version": "0.2.12",
"version": "0.2.12-patch-1",
"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.2.12";
export let ad4mExecutorVersion = "0.2.12-patch-1";
export let agentLanguageAlias = "did";
export let languageLanguageAlias = "lang";
export let neighbourhoodLanguageAlias = "neighbourhood";
Expand Down
3 changes: 2 additions & 1 deletion host/mainnet_seed.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
{
"trustedAgents": [
"did:key:zQ3sheV6m6sT83woZtVL2PHiz6J1qWRh4FWW2aiJvxy6d2o7S"
"did:key:zQ3sheV6m6sT83woZtVL2PHiz6J1qWRh4FWW2aiJvxy6d2o7S",
"did:key:zQ3shh5eZoXQAbHwUwyypdEd4knEpsaUnLwrjSxjNmHMVPBqQ"
],
"knownLinkLanguages": [
"QmX6F3iY9X6e9Fy1tdvs4PSqyNmFUqcanMQ8jJjX8u5J8a"
Expand Down
2 changes: 1 addition & 1 deletion host/oldestSupportedVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.11
0.2.12
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.2.12",
"version": "0.2.12-patch-1",
"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.2.12",
"version": "0.2.12-patch-1",
"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.2.12"
version = "0.2.12-patch-1"
edition = "2021"
authors = ["Nicolas Luck <nicolas@perspect3vism.org>"]
description = "Client library wrapping AD4M's GraphQL interface"
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.2.12",
"version": "0.2.12-patch-1",
"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.2.12"
version = "0.2.12-patch-1"
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.2.12"
"version": "0.2.12-patch-1"
},
"build": {
"distDir": "../dist",
Expand Down

0 comments on commit d5766a5

Please sign in to comment.