Skip to content

Commit 7a94e9f

Browse files
committed
release: v0.2.2
1 parent a7e3463 commit 7a94e9f

File tree

6 files changed

+21
-16
lines changed

6 files changed

+21
-16
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ jobs:
6666
run: |
6767
directory=tytanic-${{ matrix.target }}
6868
mkdir $directory
69-
cp README.md CHANGELOG.md LICENSE $directory
69+
cp README.md docs/CHANGELOG.md LICENSE $directory
7070
if [ -f target/${{ matrix.target }}/release/tt.exe ]; then
7171
cp target/${{ matrix.target }}/release/tt.exe $directory
7272
7z a -r $directory.zip $directory

Cargo.lock

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

Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ resolver = "2"
33
members = ["crates/*"]
44

55
[workspace.package]
6-
version = "0.2.1"
6+
version = "0.2.2"
77
# must match ci.yml
88
rust-version = "1.84"
99
authors = ["tingerrr <[email protected]>"]
@@ -16,9 +16,9 @@ keywords = ["typst", "test"]
1616
readme = "README.md"
1717

1818
[workspace.dependencies]
19-
tytanic-core = { version = "0.2.1", path = "crates/tytanic-core" }
20-
tytanic-filter = { version = "0.2.1", path = "crates/tytanic-filter" }
21-
tytanic-utils = { version = "0.2.1", path = "crates/tytanic-utils" }
19+
tytanic-core = { version = "0.2.2", path = "crates/tytanic-core" }
20+
tytanic-filter = { version = "0.2.2", path = "crates/tytanic-filter" }
21+
tytanic-utils = { version = "0.2.2", path = "crates/tytanic-utils" }
2222

2323
chrono = "0.4.38"
2424
clap = "4.4.12"

docs/CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# [unreleased](https://github.com/tingerrr/tytanic/releases/tag/)
22
## Highlights
33

4+
## Changes
5+
6+
## Fixes
7+
8+
---
9+
10+
# [v0.2.2](https://github.com/tingerrr/tytanic/releases/tag/v0.2.2)
411
## Changes
512
- Update MSRV to `1.84`
613
- Update dependencies
714
- Update Typst to `0.13.1`
815

9-
## Fixes
10-
1116
---
1217

1318
# [v0.2.1](https://github.com/tingerrr/tytanic/releases/tag/v0.2.1)

docs/book/src/quickstart/install.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To install Tytanic from source, you must have a Rust toolchain (Rust **v1.84.0+*
3434

3535
#### Stable
3636
```shell
37-
cargo install --locked [email protected].1
37+
cargo install --locked [email protected].2
3838
```
3939

4040
#### Nightly
@@ -47,7 +47,7 @@ This method usually doesn't require manually placing the `tt` binary in your `$P
4747
### Nix Flake
4848
#### Stable
4949
```shell
50-
nix run github:tingerrr/tytanic/v0.2.1
50+
nix run github:tingerrr/tytanic/v0.2.2
5151
```
5252

5353
#### Nightly
@@ -60,7 +60,7 @@ This method does't require any extraction or `$PATH` modifications.
6060
### Using docker
6161
Every release is automatically added to the GitHub Container Registry `ghcr.io` and can be pulled like so:
6262
```shell
63-
docker pull ghcr.io/tingerrr/tytanic:v0.2.1
63+
docker pull ghcr.io/tingerrr/tytanic:v0.2.2
6464
```
6565

6666
Check out the [package][docker] for platform specific builds.

docs/book/src/reference/compat.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,6 @@ The following table describes all Tytanic and Typst verions and how they corresp
3232
|`<= v0.11.1`|none|unsupported|
3333
|`== v0.12.0`|`v0.1.0 .. v0.1.3`|
3434
|`== v0.13.0-rc1`|`v0.2.0-rc1`|
35-
|`== v0.13.0`|`v0.2.0 .. v0.2.1`|
35+
|`== v0.13.0`|`v0.2.0 .. v0.2.2`|
3636
|`>= v0.13.0`|none|unsupported|
3737

0 commit comments

Comments
 (0)