From 2b57a4d9472b1211ae91d6087980cc33cb7cc293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Augusto=20Elesb=C3=A3o?= Date: Fri, 19 May 2023 13:04:28 +0200 Subject: [PATCH] build: prepare v0.2.0 release (#85) --- .yarn/versions/5ce7c219.yml | 4 ---- .yarn/versions/5f236915.yml | 3 --- .yarn/versions/9142533c.yml | 3 --- .yarn/versions/93da5c64.yml | 2 -- .yarn/versions/a7a85de0.yml | 3 --- .yarn/versions/dc753c82.yml | 3 --- .yarn/versions/dd012552.yml | 2 -- .yarn/versions/e0987bab.yml | 3 --- README.md | 15 +++++++++++++++ changelog.md | 4 +--- package.json | 2 +- packages/arch3-core/package.json | 2 +- packages/arch3-proto/package.json | 2 +- 13 files changed, 19 insertions(+), 29 deletions(-) delete mode 100644 .yarn/versions/5ce7c219.yml delete mode 100644 .yarn/versions/5f236915.yml delete mode 100644 .yarn/versions/9142533c.yml delete mode 100644 .yarn/versions/93da5c64.yml delete mode 100644 .yarn/versions/a7a85de0.yml delete mode 100644 .yarn/versions/dc753c82.yml delete mode 100644 .yarn/versions/dd012552.yml delete mode 100644 .yarn/versions/e0987bab.yml diff --git a/.yarn/versions/5ce7c219.yml b/.yarn/versions/5ce7c219.yml deleted file mode 100644 index 3ac9e9e6..00000000 --- a/.yarn/versions/5ce7c219.yml +++ /dev/null @@ -1,4 +0,0 @@ -releases: - "@archwayhq/arch3-core": minor - "@archwayhq/arch3-proto": minor - "@archwayhq/arch3.js": minor diff --git a/.yarn/versions/5f236915.yml b/.yarn/versions/5f236915.yml deleted file mode 100644 index eab7c3a6..00000000 --- a/.yarn/versions/5f236915.yml +++ /dev/null @@ -1,3 +0,0 @@ -declined: - - "@archwayhq/arch3.js" - - "@archwayhq/arch3-core" diff --git a/.yarn/versions/9142533c.yml b/.yarn/versions/9142533c.yml deleted file mode 100644 index a082cf28..00000000 --- a/.yarn/versions/9142533c.yml +++ /dev/null @@ -1,3 +0,0 @@ -releases: - "@archwayhq/arch3-core": minor - "@archwayhq/arch3.js": minor diff --git a/.yarn/versions/93da5c64.yml b/.yarn/versions/93da5c64.yml deleted file mode 100644 index 5ff98ca4..00000000 --- a/.yarn/versions/93da5c64.yml +++ /dev/null @@ -1,2 +0,0 @@ -declined: - - "@archwayhq/arch3.js" diff --git a/.yarn/versions/a7a85de0.yml b/.yarn/versions/a7a85de0.yml deleted file mode 100644 index a082cf28..00000000 --- a/.yarn/versions/a7a85de0.yml +++ /dev/null @@ -1,3 +0,0 @@ -releases: - "@archwayhq/arch3-core": minor - "@archwayhq/arch3.js": minor diff --git a/.yarn/versions/dc753c82.yml b/.yarn/versions/dc753c82.yml deleted file mode 100644 index a082cf28..00000000 --- a/.yarn/versions/dc753c82.yml +++ /dev/null @@ -1,3 +0,0 @@ -releases: - "@archwayhq/arch3-core": minor - "@archwayhq/arch3.js": minor diff --git a/.yarn/versions/dd012552.yml b/.yarn/versions/dd012552.yml deleted file mode 100644 index 5ff98ca4..00000000 --- a/.yarn/versions/dd012552.yml +++ /dev/null @@ -1,2 +0,0 @@ -declined: - - "@archwayhq/arch3.js" diff --git a/.yarn/versions/e0987bab.yml b/.yarn/versions/e0987bab.yml deleted file mode 100644 index a082cf28..00000000 --- a/.yarn/versions/e0987bab.yml +++ /dev/null @@ -1,3 +0,0 @@ -releases: - "@archwayhq/arch3-core": minor - "@archwayhq/arch3.js": minor diff --git a/README.md b/README.md index fab4991e..cde72c51 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,21 @@ yarn add @archwayhq/arch3.js For a complete reference on the classes and methods available, please check the [API docs](https://archway-network.github.io/arch3.js). +## Compatibility table + +List of Archway [protocol versions](https://github.com/archway-network/archway/releases) compatible with `arch3.js`: + +| `archwayd` | `arch3.js` | +|:----------:|:----------:| +| `>=0.5.0` | `0.2.0` | +| `<0.5.0` | `0.1.0` | + +To query the current version of a node, you can run: + +```sh +curl -sfL 'https://rpc.constantine.archway.tech/abci_info' | jq -r '.result.response.version' +``` + ## Sample Usage The examples suppose you deployed the [increment](https://github.com/archway-network/archway-templates/tree/caaa5ef/increment) contract template to Constantine. diff --git a/changelog.md b/changelog.md index 2871bf82..620ad3f0 100644 --- a/changelog.md +++ b/changelog.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/) and this project adheres to [Semantic Versioning](http://semver.org/). -## Unreleased +## v0.2.0 (2023-05-17) ### New feature @@ -32,8 +32,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## v0.1.0 (2022-09-23) -Alpha release of arch3.js - ### New feature #### **arch3-core** diff --git a/package.json b/package.json index cee2dbc3..4d657602 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@archwayhq/arch3.js", - "version": "0.1.0", + "version": "0.2.0", "description": "The all-in-one library for your awesome Archway dApp", "homepage": "https://docs.archway.io", "repository": "github:archway-network/arch3.js", diff --git a/packages/arch3-core/package.json b/packages/arch3-core/package.json index 3b4357d3..e3514eac 100644 --- a/packages/arch3-core/package.json +++ b/packages/arch3-core/package.json @@ -1,6 +1,6 @@ { "name": "@archwayhq/arch3-core", - "version": "0.1.0", + "version": "0.2.0", "description": "Core library to interact with Archway Network", "homepage": "https://docs.archway.io", "repository": "github:archway-network/arch3.js", diff --git a/packages/arch3-proto/package.json b/packages/arch3-proto/package.json index a38efde9..c51c79fa 100644 --- a/packages/arch3-proto/package.json +++ b/packages/arch3-proto/package.json @@ -1,6 +1,6 @@ { "name": "@archwayhq/arch3-proto", - "version": "0.1.0", + "version": "0.2.0", "description": "Archway Protobuf client", "homepage": "https://github.com/jsoneaday/arch3-proto#readme", "repository": "https://github.com/jsoneaday/arch3-proto",