Skip to content

Commit

Permalink
ci(release): release version 0.1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
galoybot committed May 28, 2024
1 parent 7583b86 commit 0b4555f
Show file tree
Hide file tree
Showing 11 changed files with 56 additions and 30 deletions.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,29 @@
# [cala release v0.1.5](https://github.com/GaloyMoney/cala/releases/tag/0.1.5)


### Features

- Atomic mutations (#78)
- Account set member (#76)
- AccountSet (#74)
- Transaction_by_external_id
- Support CEL packages (#72)

### Miscellaneous Tasks

- Rename account -> account set in expect (#81)
- Remove dummy output
- Record account set balances (#80)
- Expose created / modified (#73)
- Add transaction(id)

### Refactor

- Atomic mutations for tx_template_create and post_transaction (#79)
- Use atomic operation for creating entities (#77)
- Add entry_ids to TransactionValues
- Rename tx -> db

# [cala release v0.1.4](https://github.com/GaloyMoney/cala/releases/tag/0.1.4)


Expand Down
18 changes: 9 additions & 9 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 cala-cel-interpreter/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cala-cel-interpreter"
description = "An interpreter for the Common Expression Language (CEL)"
repository = "https://github.com/GaloyMoney/cala"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0"
categories = ["parsing", "cel"]
Expand All @@ -12,7 +12,7 @@ categories = ["parsing", "cel"]
fail-on-warnings = []

[dependencies]
cel-parser = { path = "../cala-cel-parser/", package = "cala-cel-parser", version = "0.1.5-dev" }
cel-parser = { path = "../cala-cel-parser/", package = "cala-cel-parser", version = "0.1.5" }

chrono = { workspace = true }
rust_decimal = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cala-cel-parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cala-cel-parser"
description = "A parser for the Common Expression Language (CEL)"
repository = "https://github.com/GaloyMoney/cala"
version = "0.1.5-dev"
version = "0.1.5"
authors = ["Justin Carter <[email protected]>"]
edition = "2021"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions cala-ledger-core-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cala-ledger-core-types"
repository = "https://github.com/GaloyMoney/cala"
description = "Core types for cala"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0"
categories = ["core-types"]
Expand All @@ -11,7 +11,7 @@ categories = ["core-types"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cel-interpreter = { path = "../cala-cel-interpreter/", package = "cala-cel-interpreter", version = "0.1.5-dev" }
cel-interpreter = { path = "../cala-cel-interpreter/", package = "cala-cel-interpreter", version = "0.1.5" }

serde = { workspace = true }
serde_json = { workspace = true }
Expand Down
6 changes: 3 additions & 3 deletions cala-ledger-outbox-client/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cala-ledger-outbox-client"
description = "Outbox client for cala-ledger"
repository = "https://github.com/GaloyMoney/cala"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0"
categories = ["client", "outbox"]
Expand All @@ -12,8 +12,8 @@ categories = ["client", "outbox"]
fail-on-warnings = []

[dependencies]
cala_types = { path = "../cala-ledger-core-types", package = "cala-ledger-core-types", version = "0.1.5-dev" }
cel-interpreter = { path = "../cala-cel-interpreter", package = "cala-cel-interpreter", version = "0.1.5-dev" }
cala_types = { path = "../cala-ledger-core-types", package = "cala-ledger-core-types", version = "0.1.5" }
cel-interpreter = { path = "../cala-cel-interpreter", package = "cala-cel-interpreter", version = "0.1.5" }

futures = { workspace = true }
uuid = { workspace = true }
Expand Down
8 changes: 4 additions & 4 deletions cala-ledger/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description = "An embeddable double sided accounting ledger built on PG/SQLx"
repository = "https://github.com/GaloyMoney/cala"
documentation = "https://docs.rs/cala-ledger"
readme = "../README.md"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0"
categories = ["accounting", "ledger"]
Expand All @@ -15,9 +15,9 @@ fail-on-warnings = []
import = []

[dependencies]
cala-types = { path = "../cala-ledger-core-types", package = "cala-ledger-core-types", version = "0.1.5-dev" }
cel-interpreter = { path = "../cala-cel-interpreter", package = "cala-cel-interpreter", version = "0.1.5-dev" }
cala-tracing = { path = "../cala-tracing", features = ["grpc"], package = "cala-tracing", version = "0.1.5-dev" }
cala-types = { path = "../cala-ledger-core-types", package = "cala-ledger-core-types", version = "0.1.5" }
cel-interpreter = { path = "../cala-cel-interpreter", package = "cala-cel-interpreter", version = "0.1.5" }
cala-tracing = { path = "../cala-tracing", features = ["grpc"], package = "cala-tracing", version = "0.1.5" }

cached = { workspace = true }
chrono = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cala-nodejs/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
edition = "2021"
name = "galoymoney_cala-ledger"
version = "0.1.5-dev"
version = "0.1.5"

[lib]
crate-type = ["cdylib"]
Expand Down
12 changes: 6 additions & 6 deletions cala-server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cala-server"
description = "Server to sync other cala deployments"
repository = "https://github.com/GaloyMoney/cala"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0"
categories = ["server", "sync"]
Expand All @@ -11,11 +11,11 @@ categories = ["server", "sync"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
cala-types = { path = "../cala-ledger-core-types", package = "cala-ledger-core-types", version = "0.1.5-dev" }
cala-ledger = { path = "../cala-ledger", features = ["import"], package = "cala-ledger", version = "0.1.5-dev" }
cel-interpreter = { path = "../cala-cel-interpreter", package = "cala-cel-interpreter", version = "0.1.5-dev" }
cala-ledger-outbox-client = { path = "../cala-ledger-outbox-client", package = "cala-ledger-outbox-client", version = "0.1.5-dev" }
cala-tracing = { path = "../cala-tracing", features = ["http", "grpc"], package = "cala-tracing", version = "0.1.5-dev" }
cala-types = { path = "../cala-ledger-core-types", package = "cala-ledger-core-types", version = "0.1.5" }
cala-ledger = { path = "../cala-ledger", features = ["import"], package = "cala-ledger", version = "0.1.5" }
cel-interpreter = { path = "../cala-cel-interpreter", package = "cala-cel-interpreter", version = "0.1.5" }
cala-ledger-outbox-client = { path = "../cala-ledger-outbox-client", package = "cala-ledger-outbox-client", version = "0.1.5" }
cala-tracing = { path = "../cala-tracing", features = ["http", "grpc"], package = "cala-tracing", version = "0.1.5" }

anyhow = { workspace = true }
async-graphql = { workspace = true }
Expand Down
2 changes: 1 addition & 1 deletion cala-tracing/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "cala-tracing"
description = "Tracing library powering cala stack"
repository = "https://github.com/GaloyMoney/cala"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
license = "Apache-2.0"

Expand Down
2 changes: 1 addition & 1 deletion examples/rust/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cala-ledger-example-rust"
version = "0.1.5-dev"
version = "0.1.5"
edition = "2021"
workspace = "../../"

Expand Down

0 comments on commit 0b4555f

Please sign in to comment.