Skip to content

Commit

Permalink
Release commit created with Cranko.
Browse files Browse the repository at this point in the history
+++ cranko-release-info-v1
[[projects]]
qnames = ["tectonic_xdv", "cargo"]
version = "0.2.0"
age = 1

[[projects]]
qnames = ["tectonic_errors", "cargo"]
version = "0.2.0"
age = 22

[[projects]]
qnames = ["tectonic_xetex_format", "cargo"]
version = "0.1.0"
age = 1

[[projects]]
qnames = ["tectonic_status_base", "cargo"]
version = "0.2.0"
age = 16

[[projects]]
qnames = ["tectonic_io_base", "cargo"]
version = "0.4.0"
age = 1

[[projects]]
qnames = ["tectonic_geturl", "cargo"]
version = "0.3.1"
age = 1

[[projects]]
qnames = ["tectonic_docmodel", "cargo"]
version = "0.1.2"
age = 1

[[projects]]
qnames = ["tectonic_dep_support", "cargo"]
version = "0.1.0"
age = 26

[[projects]]
qnames = ["tectonic_cfg_support", "cargo"]
version = "0.1.4"
age = 1

[[projects]]
qnames = ["tectonic_bundles", "cargo"]
version = "0.2.0"
age = 3

[[projects]]
qnames = ["tectonic_bridge_icu", "cargo"]
version = "0.2.0"
age = 22

[[projects]]
qnames = ["tectonic_bridge_graphite2", "cargo"]
version = "0.2.1"
age = 4

[[projects]]
qnames = ["tectonic_bridge_harfbuzz", "cargo"]
version = "0.2.4"
age = 1

[[projects]]
qnames = ["tectonic_bridge_freetype2", "cargo"]
version = "0.2.0"
age = 22

[[projects]]
qnames = ["tectonic_bridge_flate", "cargo"]
version = "0.1.5"
age = 10

[[projects]]
qnames = ["tectonic_bridge_core", "cargo"]
version = "0.3.0"
age = 4

[[projects]]
qnames = ["tectonic_xetex_layout", "cargo"]
version = "0.1.1"
age = 3

[[projects]]
qnames = ["tectonic_pdf_io", "cargo"]
version = "0.1.2"
age = 4

[[projects]]
qnames = ["tectonic_engine_xetex", "cargo"]
version = "0.2.0"
age = 0

[[projects]]
qnames = ["tectonic_engine_xdvipdfmx", "cargo"]
version = "0.1.3"
age = 8

[[projects]]
qnames = ["tectonic_engine_spx2html", "cargo"]
version = "0.1.0"
age = 0

[[projects]]
qnames = ["tectonic_engine_bibtex", "cargo"]
version = "0.1.3"
age = 10

[[projects]]
qnames = ["tectonic", "cargo"]
version = "0.8.0"
age = 2

+++
  • Loading branch information
cranko committed Feb 28, 2022
2 parents 810f924 + 3eb1495 commit 2d12708
Show file tree
Hide file tree
Showing 6 changed files with 35 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ tectonic_bridge_core = { path = "crates/bridge_core", version =">=0.3.0,<1"}
tectonic_bundles = { path = "crates/bundles", version =">=0.2.0,<1", default-features = false }
tectonic_docmodel = { path = "crates/docmodel", version =">=0.1.2,<1", optional = true }
tectonic_engine_bibtex = { path = "crates/engine_bibtex", version =">=0.1.0,<1"}
tectonic_engine_spx2html = { path = "crates/engine_spx2html", version =">=0.0.0,<1"}
tectonic_engine_spx2html = { path = "crates/engine_spx2html", version =">=0.1.0,<1"}
tectonic_engine_xdvipdfmx = { path = "crates/engine_xdvipdfmx", version =">=0.1.0,<1"}
tectonic_engine_xetex = { path = "crates/engine_xetex", version =">=0.1.4,<1"}
tectonic_engine_xetex = { path = "crates/engine_xetex", version =">=0.2.0,<1"}
tectonic_errors = { path = "crates/errors", version =">=0.1.0,<1"}
tectonic_geturl = { path = "crates/geturl", version =">=0.3.0,<1", default-features = false }
tectonic_io_base = { path = "crates/io_base", version =">=0.3.0,<1"}
Expand Down
12 changes: 12 additions & 0 deletions crates/engine_spx2html/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# tectonic_engine_spx2html 0.1.0 (2022-02-28)

Introduce this crate, which starts implementing Tectonic's HTML output. It uses
[tera] for templating and a hacked version of [pinot] for parsing font files,
which turns out to be important for precise typography.

The implementation is still very much preliminary, and the associated HTML and
CSS templates haven't yet been published anywhere, so it's not very useful as
yet, but hopefully that will all be changing soon.

[tera]: https://crates.io/crates/tera
[pinot]: https://crates.io/crates/pinot
2 changes: 1 addition & 1 deletion crates/engine_spx2html/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[package]
name = "tectonic_engine_spx2html"
version = "0.0.0"
version = "0.1.0"
authors = ["Peter Williams <[email protected]>"]
description = """
The Tectonic engine that converts SPX output to HTML.
Expand Down
17 changes: 17 additions & 0 deletions crates/engine_xetex/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
# tectonic_engine_xetex 0.2.0 (2022-02-28)

- Use the new `tectonic_xetex_format` crate as part of the build process (#851,
#848, @pkgw). This crate defines all of the metadata about the XeTeX engine
internals, with versioning, and generates the necessary header files and
macros. It also contains code for decoding XeTeX/Tectonic format files, so
that we'll be able to introspect engine data structures such as macro
definitions.
- Plumb in some specials that will be used by the prototype HTML output
mode (#865, @pkgw)
- Tidy up some of the auto-generated C code
- Fix an internal transcription error: `pre_display_direction`, not
`pre_display_correction`
- Fix a long-standing test issue with PNG image dimensions occasionally leading
to not-quite-reproducible output (#847, @pkgw)


# tectonic_engine_xetex 0.1.4 (2021-07-04)

- Avoid misplaced newlines in warning output ([#803], [@ralismark])
Expand Down
2 changes: 1 addition & 1 deletion crates/engine_xetex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

[package]
name = "tectonic_engine_xetex"
version = "0.1.4"
version = "0.2.0"
authors = ["Peter Williams <[email protected]>"]
description = """
The [XeTeX](http://xetex.sourceforge.net/) engine as a reusable crate.
Expand Down

0 comments on commit 2d12708

Please sign in to comment.