Skip to content
This repository has been archived by the owner on Feb 3, 2023. It is now read-only.

Commit

Permalink
Release v0.0.43-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
zippy committed Feb 10, 2020
1 parent e37a728 commit 1d8b9fc
Show file tree
Hide file tree
Showing 40 changed files with 232 additions and 218 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [0.0.43-alpha2] - 2020-02-10

### Added

### Changed

### Deprecated

### Removed

### Fixed

### Security

## [0.0.43-alpha1] - 2020-02-09

### Added
Expand Down
202 changes: 101 additions & 101 deletions Cargo.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion app_spec/zomes/blog/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blog"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec/zomes/converse/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "converse"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Julian Laubstein <contact@julianlaubstein.de>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec/zomes/simple/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Ashanti Mutinta <Ashantimutinta@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec/zomes/summer/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summer"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec_proc_macro/zomes/blog/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "blog"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec_proc_macro/zomes/converse/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "converse"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Julian Laubstein <contact@julianlaubstein.de>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec_proc_macro/zomes/simple/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "simple"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Ashanti Mutinta <Ashantimutinta@gmail.com>"]
edition = "2018"

Expand Down
2 changes: 1 addition & 1 deletion app_spec_proc_macro/zomes/summer/code/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "summer"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[dependencies]
Expand Down
6 changes: 3 additions & 3 deletions config.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
let
release-commit = "a15198cf04c0a86dc51ea2b9a5a5463f5c01af95";
current = "0.0.43-alpha1";
previous = "0.0.42-alpha5";
release-commit = "baa581c2d433e34059f0605ad391676e8c3ab686";
current = "0.0.43-alpha2";
previous = "0.0.43-alpha1";
# tag will ultimately be current version when it hits holonix
# https://github.com/holochain/holonix/blob/master/release/default.nix#L7
tag = "v${current}";
Expand Down
2 changes: 1 addition & 1 deletion core_api_c_binding/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_core_api_c_binding"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[lib]
Expand Down
20 changes: 10 additions & 10 deletions crates/cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ description = "holochain app scaffolding tools"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
documentation = "https://github.com/holochain/holochain-rust"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[dependencies]
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
holochain_core = { version = "=0.0.43-alpha1", path = "../core" }
holochain_common = { version = "=0.0.43-alpha1", path = "../common" }
holochain_conductor_lib = { version = "=0.0.43-alpha1", path = "../conductor_lib" }
holochain_net = { version = "=0.0.43-alpha1", path = "../net" }
holochain_dpki = { version = "=0.0.43-alpha1", path = "../dpki" }
holochain_locksmith = { version = "=0.0.43-alpha1", path = "../locksmith" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
holochain_core = { version = "=0.0.43-alpha2", path = "../core" }
holochain_common = { version = "=0.0.43-alpha2", path = "../common" }
holochain_conductor_lib = { version = "=0.0.43-alpha2", path = "../conductor_lib" }
holochain_net = { version = "=0.0.43-alpha2", path = "../net" }
holochain_dpki = { version = "=0.0.43-alpha2", path = "../dpki" }
holochain_locksmith = { version = "=0.0.43-alpha2", path = "../locksmith" }
holochain_tracing_macros = "0.0.16"
newrelic="0.2"
sim2h = { version = "=0.0.43-alpha1", path = "../sim2h" }
sim2h = { version = "=0.0.43-alpha2", path = "../sim2h" }
lib3h_crypto_api = "=0.0.35"
in_stream = { version = "=0.0.43-alpha1", path = "../in_stream" }
in_stream = { version = "=0.0.43-alpha2", path = "../in_stream" }
url2 = "=0.0.4"
lib3h_sodium = "=0.0.35"
holochain_json_api = "=0.0.17"
Expand Down
2 changes: 1 addition & 1 deletion crates/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "holochain core commons"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
documentation = "https://github.com/holochain/holochain-rust"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"

Expand Down
10 changes: 5 additions & 5 deletions crates/conductor_api/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@ description = "holochain conductor lib api"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
documentation = "https://github.com/holochain/holochain-rust"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"

[dependencies]
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
holochain_wasm_utils = { version = "=0.0.43-alpha1", path = "../wasm_utils" }
holochain_locksmith = { version = "=0.0.43-alpha1", path = "../locksmith" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
holochain_wasm_utils = { version = "=0.0.43-alpha2", path = "../wasm_utils" }
holochain_locksmith = { version = "=0.0.43-alpha2", path = "../locksmith" }
holochain_tracing_macros = "0.0.16"
holochain_common = { version = "=0.0.43-alpha1", path = "../common" }
holochain_common = { version = "=0.0.43-alpha2", path = "../common" }
newrelic="0.2"
jsonrpc-core = "=14.0.1"
jsonrpc-lite = "=0.5.0"
Expand Down
20 changes: 10 additions & 10 deletions crates/conductor_lib/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,28 +4,28 @@ description = "holochain conductor library"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
documentation = "https://github.com/holochain/holochain-rust"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
edition = "2018"

[dependencies]
holochain_core = { version = "=0.0.43-alpha1", path = "../core" }
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
holochain_locksmith = { version = "=0.0.43-alpha1", path = "../locksmith" }
holochain_core = { version = "=0.0.43-alpha2", path = "../core" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
holochain_locksmith = { version = "=0.0.43-alpha2", path = "../locksmith" }
holochain_json_derive = "=0.0.17"
holochain_json_api = "=0.0.17"
holochain_persistence_api = "=0.0.14"
holochain_persistence_mem = "=0.0.14"
holochain_persistence_file = "=0.0.14"
holochain_persistence_pickle = "=0.0.14"
holochain_persistence_lmdb = "=0.0.14"
holochain_common = { version = "=0.0.43-alpha1", path = "../common" }
holochain_dpki = { version = "=0.0.43-alpha1", path = "../dpki" }
holochain_net = { version = "=0.0.43-alpha1", path = "../net" }
holochain_common = { version = "=0.0.43-alpha2", path = "../common" }
holochain_dpki = { version = "=0.0.43-alpha2", path = "../dpki" }
holochain_net = { version = "=0.0.43-alpha2", path = "../net" }
holochain_tracing_macros = "0.0.16"
lib3h = "=0.0.35"
lib3h_sodium = "=0.0.35"
holochain_metrics = { version = "=0.0.43-alpha1", path = "../metrics" }
holochain_metrics = { version = "=0.0.43-alpha2", path = "../metrics" }
chrono = "=0.4.6"
serde = "=1.0.89"
serde_json = { version = "=1.0.39", features = ["preserve_order"] }
Expand Down Expand Up @@ -56,9 +56,9 @@ url = { version = "=2.1.0", features = ["serde"] }
snowflake = "=1.3.0"
newrelic="0.2"
[dev-dependencies]
test_utils = { version = "=0.0.43-alpha1", path = "../../test_utils" }
test_utils = { version = "=0.0.43-alpha2", path = "../../test_utils" }
tempfile = "=3.0.7"
holochain_wasm_utils = { version = "=0.0.43-alpha1", path = "../wasm_utils" }
holochain_wasm_utils = { version = "=0.0.43-alpha2", path = "../wasm_utils" }
structopt = "=0.2.15"
pretty_assertions = "=0.6.1"
ws = "=0.8.0"
Expand Down
2 changes: 1 addition & 1 deletion crates/conductor_lib/test-bridge-caller/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-bridge-caller"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[lib]
Expand Down
2 changes: 1 addition & 1 deletion crates/conductor_lib/wasm-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "example_api_wasm"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[lib]
Expand Down
20 changes: 10 additions & 10 deletions crates/core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_core"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
description = "holochain core"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
Expand All @@ -25,21 +25,21 @@ num-traits = "=0.2.6"
num-derive = "=0.2.4"
toml = "=0.5.0"
futures = { version = "=0.3.2", features = [ "thread-pool" ] }
holochain_net = { version = "=0.0.43-alpha1", path = "../net" }
holochain_wasm_utils = { version = "=0.0.43-alpha1", path = "../wasm_utils" }
holochain_common = { version = "=0.0.43-alpha1", path = "../common" }
holochain_conductor_lib_api = { version = "=0.0.43-alpha1", path = "../conductor_api" }
holochain_net = { version = "=0.0.43-alpha2", path = "../net" }
holochain_wasm_utils = { version = "=0.0.43-alpha2", path = "../wasm_utils" }
holochain_common = { version = "=0.0.43-alpha2", path = "../common" }
holochain_conductor_lib_api = { version = "=0.0.43-alpha2", path = "../conductor_api" }
lib3h_protocol = "=0.0.35"
lib3h_sodium = "=0.0.35"
holochain_json_derive = "=0.0.17"
holochain_json_api = "=0.0.17"
holochain_persistence_api = "=0.0.14"
holochain_persistence_file = "=0.0.14"
holochain_persistence_mem = "=0.0.14"
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
holochain_dpki = { version = "=0.0.43-alpha1", path = "../dpki" }
holochain_locksmith = { version = "=0.0.43-alpha1", path = "../locksmith" }
holochain_metrics = { version = "=0.0.43-alpha1", path = "../metrics" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
holochain_dpki = { version = "=0.0.43-alpha2", path = "../dpki" }
holochain_locksmith = { version = "=0.0.43-alpha2", path = "../locksmith" }
holochain_metrics = { version = "=0.0.43-alpha2", path = "../metrics" }
holochain_tracing_macros = "0.0.16"
log = "=0.4.8"
holochain_logging = "=0.0.4"
Expand All @@ -62,6 +62,6 @@ newrelic="0.2"

[dev-dependencies]
wabt = "=0.7.4"
test_utils = { version = "=0.0.43-alpha1", path = "../../test_utils" }
test_utils = { version = "=0.0.43-alpha2", path = "../../test_utils" }
tempfile = "=3.0.7"
holochain_persistence_lmdb = "=0.0.14"
2 changes: 1 addition & 1 deletion crates/core/src/nucleus/actions/wasm-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nucleus-actions-tests"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[lib]
Expand Down
6 changes: 3 additions & 3 deletions crates/core_types/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_core_types"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]
build = "build.rs"
description = "core types needed for all holochain development"
Expand Down Expand Up @@ -30,7 +30,7 @@ objekt= "=0.1.2"
holochain_persistence_api = "=0.0.14"
holochain_json_derive = "=0.0.17"
holochain_json_api = "=0.0.17"
holochain_locksmith = { version = "=0.0.43-alpha1", path = "../locksmith" }
holochain_locksmith = { version = "=0.0.43-alpha2", path = "../locksmith" }
uuid = { version = "=0.7.1", features = ["v4"] }
regex = "=1.1.2"
shrinkwraprs = "=0.2.1"
Expand All @@ -41,7 +41,7 @@ log = "=0.4.8"
holochain_logging = "=0.0.4"

[dev-dependencies]
test_utils = { version = "=0.0.43-alpha1", path = "../../test_utils"}
test_utils = { version = "=0.0.43-alpha2", path = "../../test_utils"}
maplit = "=1.0.2"

[build-dependencies]
Expand Down
6 changes: 3 additions & 3 deletions crates/dpki/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "holochain_dpki"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
description = "holochain dpki"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
Expand All @@ -11,7 +11,7 @@ edition = "2018"
[dependencies]
lazy_static = "=1.4.0"
base64 = "=0.10.1"
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
holochain_tracing_macros = "0.0.16"
newrelic="0.2"
lib3h_sodium = "=0.0.35"
Expand All @@ -21,4 +21,4 @@ serde_derive = "=1.0.89"
serde_json = { version = "=1.0.39", features = ["preserve_order"] }
hcid = "=0.0.6"
bip39 = "=0.6.0-beta.1"
holochain_common = { version = "=0.0.43-alpha1", path = "../common" }
holochain_common = { version = "=0.0.43-alpha2", path = "../common" }
14 changes: 7 additions & 7 deletions crates/hdk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "hdk"
edition = "2018"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
description = "holochain hdk"
license = "GPL-3.0-only"
repository = "https://github.com/holochain/holochain-rust"
Expand All @@ -14,8 +14,8 @@ serde_derive = "=1.0.89"
serde_json = { version = "=1.0.39", features = ["preserve_order"] }
bitflags = "=1.2.1"
lazy_static = "=1.4.0"
holochain_wasm_utils = { version = "=0.0.43-alpha1", path = "../wasm_utils" }
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
holochain_wasm_utils = { version = "=0.0.43-alpha2", path = "../wasm_utils" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
holochain_json_api = "=0.0.17"
holochain_json_derive = "=0.0.17"
holochain_persistence_api = "=0.0.14"
Expand All @@ -24,9 +24,9 @@ env_logger = "=0.6.1"
url = "=2.1.0"

[dev-dependencies]
test_utils = { version = "=0.0.43-alpha1", path = "../../test_utils" }
holochain_conductor_lib = { version = "=0.0.43-alpha1", path = "../conductor_lib" }
holochain_core = { version = "=0.0.43-alpha1", path = "../core" }
holochain_core_types = { version = "=0.0.43-alpha1", path = "../core_types" }
test_utils = { version = "=0.0.43-alpha2", path = "../../test_utils" }
holochain_conductor_lib = { version = "=0.0.43-alpha2", path = "../conductor_lib" }
holochain_core = { version = "=0.0.43-alpha2", path = "../core" }
holochain_core_types = { version = "=0.0.43-alpha2", path = "../core_types" }
tempfile = "=3.0.7"
boolinator = "=2.4.0"
2 changes: 1 addition & 1 deletion crates/hdk/wasm-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-globals"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[lib]
Expand Down
4 changes: 2 additions & 2 deletions crates/hdk_v2/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "hdk_proc_macros"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
description = "holochain hdk v2 (with proc macros)"
license = "GPL-3.0-only"
homepage = "https://github.com/holochain/holochain-rust"
Expand All @@ -15,4 +15,4 @@ proc-macro = true
syn = { version = "=0.15.31", features = ["full", "extra-traits"]}
quote = "=0.6.11"
proc-macro2 = "=0.4.27"
hdk = { version = "=0.0.43-alpha1", path = "../hdk" }
hdk = { version = "=0.0.43-alpha2", path = "../hdk" }
2 changes: 1 addition & 1 deletion crates/hdk_v2/wasm-test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "test-proc-macro"
version = "0.0.43-alpha1"
version = "0.0.43-alpha2"
authors = ["Holochain Core Dev Team <devcore@holochain.org>"]

[lib]
Expand Down
Loading

0 comments on commit 1d8b9fc

Please sign in to comment.