Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
workflow_dispatch:
inputs:
version:
description: 'Version to release (e.g. 0.1.1)'
description: 'Version to release (e.g. 0.1.2)'
required: true
type: string

Expand Down
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ in order: `xtax-encryption` → `xtax-blob-storage` → `xtax`.
3. Commit and push to `main`. Wait for CI to pass.
4. Create and push a single tag:
```bash
git tag v0.1.1
git push origin v0.1.1
git tag v0.1.2
git push origin v0.1.2
```
5. `release.yml` will:
- Extract the version from the tag
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.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtax"
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down Expand Up @@ -30,8 +30,8 @@ encryption = ["dep:xtax-encryption"]
full = ["blob-storage-full", "encryption"]

[dependencies]
xtax-blob-storage = { version = "0.1.1", path = "crates/xtax-blob-storage", optional = true, default-features = false }
xtax-encryption = { version = "0.1.1", path = "crates/xtax-encryption", optional = true }
xtax-blob-storage = { version = "0.1.2", path = "crates/xtax-blob-storage", optional = true, default-features = false }
xtax-encryption = { version = "0.1.2", path = "crates/xtax-encryption", optional = true }

[workspace]
members = [
Expand Down
4 changes: 2 additions & 2 deletions crates/xtax-blob-storage/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtax-blob-storage"
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand All @@ -23,7 +23,7 @@ fs = ["tokio/fs"]
s3 = ["dep:aws-sdk-s3", "dep:aws-smithy-types", "dep:aws-config"]

[dependencies]
xtax-encryption = { version = "0.1.1", path = "../xtax-encryption" }
xtax-encryption = { version = "0.1.2", path = "../xtax-encryption" }
async-trait = "0.1"
tracing = { version = "0.1", features = ["attributes"] }
tokio = { version = "1.52", features = ["io-util", "rt", "time", "sync", "macros"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/xtax-blob-storage/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ below.

## Status

**v0.1.0 — Experimental / learning project.** Not production-ready.
**Experimental / learning project.** Not production-ready.

## Motivation

Expand Down
2 changes: 1 addition & 1 deletion crates/xtax-blob-storage/docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

## Status

**v0.1.0 — Experimental / learning project.** Not production-ready.
**v0.1.2 — Experimental / learning project.** Not production-ready.
2 changes: 1 addition & 1 deletion crates/xtax-blob-storage/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
//!
//! ## Status
//!
//! **v0.1.0 — Experimental / learning project.** Not production-ready.
//! **Experimental / learning project.** Not production-ready.
//!
//! ## Architecture
//!
Expand Down
2 changes: 1 addition & 1 deletion crates/xtax-encryption/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xtax-encryption"
version = "0.1.1"
version = "0.1.2"
edition.workspace = true
rust-version.workspace = true
license.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/xtax-encryption/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ encryption layer with detached headers.

## Status

**v0.1.0 — Experimental / learning project.** Not production-ready.
**v0.1.2 — Experimental / learning project.** Not production-ready.

## Design

Expand Down