Skip to content

Commit a505b39

Browse files
authored
Release v0.5.0 (#20)
1 parent b46c985 commit a505b39

File tree

5 files changed

+13
-9
lines changed

5 files changed

+13
-9
lines changed

CHANGELOG.md

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,18 @@
11
# [unreleased](https://github.com/tingerrr/hydra/releases/tags/)
22
## Added
3+
4+
## Removed
5+
6+
## Changed
7+
8+
---
9+
10+
# [v0.5.0](https://github.com/tingerrr/hydra/releases/tags/v0.5.0)
11+
## Added
312
- `use-last` parameter on `hydra` for a more LaTeX style heading look up, thanks @freundTech!
413
- `hydra` now has a new `use-last` parameter
514
- `context` now has a new `use-last` field
6-
- **BREAKING CHANGE** `candidates` now has a new `last` field containiing a suitable match for the last primary candidate on this page
15+
- **BREAKING CHANGE** `candidates` now has a new `last` field containing a suitable match for the last primary candidate on this page
716

817
## Removed
918

Justfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ gen-doc-examples:
3232
$"out/($it){n}.png")
3333
};
3434
let pages = (ls out | length) / 2;
35-
{ pages: $pages } | to toml | save out.toml
35+
{ pages: $pages } | to toml | save -f out.toml
3636
}
3737
| ignore
3838

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ your document only when it is needed.
55

66
## Example
77
```typst
8-
#import "@preview/hydra:0.4.0": hydra
8+
#import "@preview/hydra:0.5.0": hydra
99
1010
#set page(paper: "a7", margin: (y: 4em), numbering: "1", header: context {
1111
if calc.odd(here().page()) {

doc/manual.pdf

1.07 KB
Binary file not shown.

typst.toml

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
entrypoint = "src/lib.typ"
33
name = "hydra"
4-
version = "0.4.0"
4+
version = "0.5.0"
55
compiler = "0.11.0"
66
authors = ["tinger <[email protected]>"]
77
repository = "https://github.com/tingerrr/hydra"
@@ -10,8 +10,3 @@ categories = ["components", "scripting"]
1010
keywords = ["context", "chapter", "section", "heading"]
1111
license = "MIT"
1212
exclude = ["examples", "README.md"]
13-
14-
# TODO: this is non-critical and therefore not yet part of ci-semi-stable
15-
# [tool.typst-test]
16-
# tests = "test"
17-
# template = "test/template.typ"

0 commit comments

Comments
 (0)