Skip to content

Commit bce6175

Browse files
build: bump version to 0.6.0 (#713)
* build: bump version to 0.6.0 * build: update dependencies
1 parent d467f0b commit bce6175

File tree

41 files changed

+212
-209
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+212
-209
lines changed

CHANGELOG/CHANGELOG-0.6.md

Lines changed: 26 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -8,63 +8,57 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
88

99
The v0.5.5 was not released because typst v0.13.0 comes before the v0.5.5 release, so we decided to skip it. The next release will be v0.6.0.
1010

11-
- feat: upgrade typst to v0.13.1 in https://github.com/Myriad-Dreamin/typst.ts/pull/643 and https://github.com/Myriad-Dreamin/typst.ts/pull/661
12-
- feat: update assets to v0.13.1 in https://github.com/Myriad-Dreamin/typst.ts/pull/682
11+
- Bumped typst to v0.13.1 in https://github.com/Myriad-Dreamin/typst.ts/pull/643 and https://github.com/Myriad-Dreamin/typst.ts/pull/661
12+
- Bumped assets to v0.13.1 in https://github.com/Myriad-Dreamin/typst.ts/pull/682
1313

1414
### Compiler
1515

16-
- feat: use world implementation from tinymist in https://github.com/Myriad-Dreamin/typst.ts/pull/636
17-
- build: remove web-time in https://github.com/Myriad-Dreamin/typst.ts/pull/664
18-
- This allows to use as a typst plugin
16+
- Using world implementation from tinymist in https://github.com/Myriad-Dreamin/typst.ts/pull/636
17+
- Removed `web-time` crate dependency in https://github.com/Myriad-Dreamin/typst.ts/pull/664
18+
- This allows to use this library in a typst plugin
1919

2020
### Renderer
2121

22-
- feat: render labels on content in https://github.com/Myriad-Dreamin/typst.ts/pull/638
22+
- Rendering labels on content in https://github.com/Myriad-Dreamin/typst.ts/pull/638
2323
- `#box() <label>` will render the label attribute to the rendered elements.
24-
- feat: support image rendering attr in https://github.com/Myriad-Dreamin/typst.ts/pull/659
24+
- Supported image rendering attr in https://github.com/Myriad-Dreamin/typst.ts/pull/659
2525
- https://typst.app/docs/reference/visualize/image/#parameters-scaling
2626

2727
### Packages
2828

29-
- fix: update bad imports in https://github.com/Myriad-Dreamin/typst.ts/pull/680
30-
- fix: better node.js wasm import in https://github.com/Myriad-Dreamin/typst.ts/pull/700
31-
- feat: add style.css to enhanced-typst-svg bundle by @seven-mile in https://github.com/Myriad-Dreamin/typst.ts/pull/632
32-
- feat: expose wasm file in compiler, renderer, parser package by @c0per and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/typst.ts/pull/662, https://github.com/Myriad-Dreamin/typst.ts/pull/674, https://github.com/Myriad-Dreamin/typst.ts/pull/693, and https://github.com/Myriad-Dreamin/typst.ts/pull/699
29+
- (Fix) Made better wasm loader in Node.js in https://github.com/Myriad-Dreamin/typst.ts/pull/700
30+
- This was giving error in Node.js 22
31+
- Updating bad `exports` fields in `package.json` files in https://github.com/Myriad-Dreamin/typst.ts/pull/680
32+
- Adding style.css to enhanced-typst-svg bundle by @seven-mile in https://github.com/Myriad-Dreamin/typst.ts/pull/632
33+
- Exposing wasm file in compiler, renderer, parser package by @c0per and @Myriad-Dreamin in https://github.com/Myriad-Dreamin/typst.ts/pull/662, https://github.com/Myriad-Dreamin/typst.ts/pull/674, https://github.com/Myriad-Dreamin/typst.ts/pull/693, and https://github.com/Myriad-Dreamin/typst.ts/pull/699
3334

3435
### Package: vite-plugin-typst (New)
3536

36-
- feat: init vite-plugin-typst in https://github.com/Myriad-Dreamin/typst.ts/pull/648
37-
- feat: add typst-cli option by @sjfhsjfh in https://github.com/Myriad-Dreamin/typst.ts/pull/650
37+
- Initialized vite-plugin-typst in https://github.com/Myriad-Dreamin/typst.ts/pull/648
38+
- Added typst-cli option by @sjfhsjfh in https://github.com/Myriad-Dreamin/typst.ts/pull/650
3839

3940
### Package: typst.ts
4041

41-
- fix: load fonts and concurrency in https://github.com/Myriad-Dreamin/typst.ts/pull/701
42-
- test: add smoke tests in https://github.com/Myriad-Dreamin/typst.ts/pull/684
43-
- test: default compile options in https://github.com/Myriad-Dreamin/typst.ts/pull/702
44-
- test: break change for v0.6.0 and test vectors to build in https://github.com/Myriad-Dreamin/typst.ts/pull/704
45-
- feat: expose `$typst` in root in https://github.com/Myriad-Dreamin/typst.ts/pull/685
42+
- (Fix) Loaded fonts and concurrency in https://github.com/Myriad-Dreamin/typst.ts/pull/701
43+
- (Break Change) default compile options in https://github.com/Myriad-Dreamin/typst.ts/pull/702
44+
- (Break Change) break change `compile` API for v0.6.0 and test vectors to build in https://github.com/Myriad-Dreamin/typst.ts/pull/704
45+
- (Test) Adding smoke tests in https://github.com/Myriad-Dreamin/typst.ts/pull/684
46+
- Exposing `$typst` in root in https://github.com/Myriad-Dreamin/typst.ts/pull/685
4647

4748
### Package: typst.react
4849

49-
- build: update react to v0.19 by @mrappard in https://github.com/Myriad-Dreamin/typst.ts/pull/672
50+
- Updating react peer dependency to v0.19 by @mrappard in https://github.com/Myriad-Dreamin/typst.ts/pull/672
5051

5152
### Package: typst-ts-node-compiler
5253

53-
- fix: reset read cache for node apis in https://github.com/Myriad-Dreamin/typst.ts/pull/683
54-
- test: confirm the creation_timestamp and pdf standard options are respected in https://github.com/Myriad-Dreamin/typst.ts/pull/696
55-
- feat: support PdfStandard `a-3b` in https://github.com/Myriad-Dreamin/typst.ts/pull/698
54+
- (Fix) Resetting read cache for node apis in https://github.com/Myriad-Dreamin/typst.ts/pull/683
55+
- (Test) Added tests to confirm the `creation_timestamp` and `pdfStandard` options are respected in https://github.com/Myriad-Dreamin/typst.ts/pull/696
56+
- Supported PdfStandard `a-3b` in https://github.com/Myriad-Dreamin/typst.ts/pull/698
5657

5758
### Misc
5859

59-
- fix: typo in README.md by @kxxt in https://github.com/Myriad-Dreamin/typst.ts/pull/633
60-
- fix: make consistent variable name in binary input example documentation by @GaoCan702 in https://github.com/Myriad-Dreamin/typst.ts/pull/665
61-
- docs: rewrite get started in https://github.com/Myriad-Dreamin/typst.ts/pull/671
62-
- docs: rewrite rust service docs in https://github.com/Myriad-Dreamin/typst.ts/pull/673
63-
- docs: rewrite all-in-one js library docs in https://github.com/Myriad-Dreamin/typst.ts/pull/675
64-
- docs: improve wording of service.typ in https://github.com/Myriad-Dreamin/typst.ts/pull/676
65-
- docs: update get-started and all-in-one js docs in https://github.com/Myriad-Dreamin/typst.ts/pull/678
66-
- docs: alias index.html in https://github.com/Myriad-Dreamin/typst.ts/pull/689
67-
- docs: some broken links in docs in https://github.com/Myriad-Dreamin/typst.ts/pull/690
68-
- docs: lite bundle must load wasm files in https://github.com/Myriad-Dreamin/typst.ts/pull/703
60+
- (Fix) Fixed a typo in README.md by @kxxt in https://github.com/Myriad-Dreamin/typst.ts/pull/633
61+
- (Fix) Made consistent variable name in binary input example documentation by @GaoCan702 in https://github.com/Myriad-Dreamin/typst.ts/pull/665
62+
- Rewrote user documentations in https://github.com/Myriad-Dreamin/typst.ts/pull/671, https://github.com/Myriad-Dreamin/typst.ts/pull/673, https://github.com/Myriad-Dreamin/typst.ts/pull/675, https://github.com/Myriad-Dreamin/typst.ts/pull/676, https://github.com/Myriad-Dreamin/typst.ts/pull/678, https://github.com/Myriad-Dreamin/typst.ts/pull/689, https://github.com/Myriad-Dreamin/typst.ts/pull/690, and https://github.com/Myriad-Dreamin/typst.ts/pull/703
6963

7064
**Full Changelog**: https://github.com/Myriad-Dreamin/typst.ts/compare/v0.5.4...v0.6.0

0 commit comments

Comments
 (0)