Skip to content

Commit 34ed703

Browse files
committed
v0.6.0-pre.1 meta
1 parent 53d641b commit 34ed703

File tree

3 files changed

+36
-32
lines changed

3 files changed

+36
-32
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,9 +379,13 @@ jobs:
379379
cp LICENSE "$dist"
380380
cp artifacts/* "$dist"
381381
tar --create --verbose --gzip --file=tansu-"${TARGET}".tar.gz -C "$dist" .
382-
- if: ${{matrix.enabled}}
382+
- if: ${{matrix.enabled && github.ref_type != 'tag'}}
383383
uses: actions/upload-artifact@v6
384384
with:
385385
name: tansu-${{matrix.target}}
386386
path: tansu-${{matrix.target}}.tar.gz
387387
if-no-files-found: error
388+
- if: ${{matrix.enabled && github.ref_type == 'tag'}}
389+
uses: softprops/action-gh-release@v1
390+
with:
391+
files: tansu-${{matrix.target}}.tar.gz

Cargo.lock

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ members = [
1919

2020
[workspace.package]
2121
edition = "2024"
22-
version = "0.5.11"
22+
version = "0.6.0-pre.1"
2323
license = "Apache-2.0"
2424
homepage = "https://tansu.io"
2525
repository = "https://github.com/tansu-io/tansu"
@@ -133,21 +133,21 @@ serde_json = "1"
133133
slatedb = "0.9.0"
134134
snap = "1.1.1"
135135
syn = { version = "2.0", features = ["full"] }
136-
tansu = { version = "0.5.11", path = "tansu", default-features = false }
137-
tansu-broker = { version = "0.5.11", path = "tansu-broker", default-features = false }
138-
tansu-cat = { version = "0.5.11", path = "tansu-cat", default-features = false }
139-
tansu-cli = { version = "0.5.11", path = "tansu-cli", default-features = false }
140-
tansu-client = { version = "0.5.11", path = "tansu-client", default-features = false }
141-
tansu-generator = { version = "0.5.11", path = "tansu-generator", default-features = false }
142-
tansu-model = { version = "0.5.11", path = "tansu-model", default-features = false }
143-
tansu-otel = { version = "0.5.11", path = "tansu-otel", default-features = false }
144-
tansu-perf = { version = "0.5.11", path = "tansu-perf", default-features = false }
145-
tansu-proxy = { version = "0.5.11", path = "tansu-proxy", default-features = false }
146-
tansu-sans-io = { version = "0.5.11", path = "tansu-sans-io", default-features = false }
147-
tansu-schema = { version = "0.5.11", path = "tansu-schema", default-features = false }
148-
tansu-service = { version = "0.5.11", path = "tansu-service", default-features = false }
149-
tansu-storage = { version = "0.5.11", path = "tansu-storage", default-features = false }
150-
tansu-topic = { version = "0.5.11", path = "tansu-topic", default-features = false }
136+
tansu = { version = "0.6.0-pre.1", path = "tansu", default-features = false }
137+
tansu-broker = { version = "0.6.0-pre.1", path = "tansu-broker", default-features = false }
138+
tansu-cat = { version = "0.6.0-pre.1", path = "tansu-cat", default-features = false }
139+
tansu-cli = { version = "0.6.0-pre.1", path = "tansu-cli", default-features = false }
140+
tansu-client = { version = "0.6.0-pre.1", path = "tansu-client", default-features = false }
141+
tansu-generator = { version = "0.6.0-pre.1", path = "tansu-generator", default-features = false }
142+
tansu-model = { version = "0.6.0-pre.1", path = "tansu-model", default-features = false }
143+
tansu-otel = { version = "0.6.0-pre.1", path = "tansu-otel", default-features = false }
144+
tansu-perf = { version = "0.6.0-pre.1", path = "tansu-perf", default-features = false }
145+
tansu-proxy = { version = "0.6.0-pre.1", path = "tansu-proxy", default-features = false }
146+
tansu-sans-io = { version = "0.6.0-pre.1", path = "tansu-sans-io", default-features = false }
147+
tansu-schema = { version = "0.6.0-pre.1", path = "tansu-schema", default-features = false }
148+
tansu-service = { version = "0.6.0-pre.1", path = "tansu-service", default-features = false }
149+
tansu-storage = { version = "0.6.0-pre.1", path = "tansu-storage", default-features = false }
150+
tansu-topic = { version = "0.6.0-pre.1", path = "tansu-topic", default-features = false }
151151
tempfile = "3"
152152
thiserror = "2.0"
153153
time = { version = "0.3.37", features = ["formatting", "macros"] }

0 commit comments

Comments
 (0)