Skip to content

Commit 1a8f239

Browse files
feat(wavltree): range, and entry APIs (#159)
* feat(wavltree): range, and entry APIs * docs * fmt * chore: ready for publish
1 parent de89290 commit 1a8f239

14 files changed

+1119
-395
lines changed

.github/workflows/release-plz.yml

+53
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
name: Release-plz
2+
3+
permissions:
4+
pull-requests: write
5+
contents: write
6+
7+
on:
8+
push:
9+
branches:
10+
- main
11+
12+
jobs:
13+
14+
# Release unpublished packages.
15+
release-plz-release:
16+
name: Release-plz release
17+
runs-on: ubuntu-latest
18+
steps:
19+
- name: Checkout repository
20+
uses: actions/checkout@v4
21+
with:
22+
fetch-depth: 0
23+
- name: Install Rust toolchain
24+
uses: dtolnay/rust-toolchain@stable
25+
- name: Run release-plz
26+
uses: release-plz/[email protected]
27+
with:
28+
command: release
29+
env:
30+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
31+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
32+
33+
# Create a PR with the new versions and changelog, preparing the next release.
34+
release-plz-pr:
35+
name: Release-plz PR
36+
runs-on: ubuntu-latest
37+
concurrency:
38+
group: release-plz-${{ github.ref }}
39+
cancel-in-progress: false
40+
steps:
41+
- name: Checkout repository
42+
uses: actions/checkout@v4
43+
with:
44+
fetch-depth: 0
45+
- name: Install Rust toolchain
46+
uses: dtolnay/rust-toolchain@stable
47+
- name: Run release-plz
48+
uses: release-plz/[email protected]
49+
with:
50+
command: release-pr
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
53+
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

Cargo.lock

+37-37
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

libs/wavltree/Cargo.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[package]
22
name = "wavltree"
3-
version.workspace = true
3+
description = "An intrusive Weak AVL Tree."
4+
version = "0.0.0"
45
edition.workspace = true
56
authors.workspace = true
67
license.workspace = true

0 commit comments

Comments
 (0)