Skip to content

Commit

Permalink
release v0.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
gfngfn committed Feb 6, 2021
1 parent a9d762b commit 9accb79
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
9 changes: 6 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,15 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.0.6] - 2021-02-06
### Fixed
- Improve how to emit errors when parsing invalid itemized expressions ([PR\#176](https://github.com/gfngfn/SATySFi/pull/176) by `hanazuki`).
- Does not embed null objects as `/DW` or `/DW2` entries in output PDFs (mainly for services that use PDFs but do not support null objects) ([PR\#180](https://github.com/gfngfn/SATySFi/pull/180)).
- Fix how to embed font subsets as to tags ([PR\#181](https://github.com/gfngfn/SATySFi/pull/181) by `matsud224`).
- Fix how to decode types written mainly in signatures ([PR\#208](https://github.com/gfngfn/SATySFi/pull/208) by `elpinal`, which was encouraged by [Issue\#184](https://github.com/gfngfn/SATySFi/issues/184) by `nyuichi`).
- Allow `?*` to math expressions and limit the range of math symbols (encouraged by [a report by `@t_uemura669101`](https://twitter.com/t_uemura669101/status/1302221948378910721?s=20)).
- Update README about how to install SATySFi on Windows in response to some amendment of `brwrap`-related problems ([PR\#242](https://github.com/gfngfn/SATySFi/pull/242)).
- Allow `?*` used in math expressions and limit the range of math symbols (encouraged by [a report by `@t_uemura669101`](https://twitter.com/t_uemura669101/status/1302221948378910721?s=20)).
- Update README about how to install SATySFi on Windows in response to some amendment of `brwrap`-related problems ([PR\#242](https://github.com/gfngfn/SATySFi/pull/242) by `nekketsuuu`).
- Improve `download-fonts.sh` as to SHA checksum ([PR\#253](https://github.com/gfngfn/SATySFi/pull/253) by `na4zagin3`).
- Fix `doc/math1.saty` ([PR\#178](https://github.com/gfngfn/SATySFi/pull/178) by `y-yu`).
- Fix how to confirm that given document files are of type `document` (resp. `string`) in the PDF mode (resp. in the text mode) (encouraged by the bug report in [Issue\#257](https://github.com/gfngfn/SATySFi/issues/257) by `zeptometer`).
Expand Down Expand Up @@ -105,7 +107,8 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/),
- Initial version of SATySFi


[Unreleased]: https://github.com/gfngfn/SATySFi/compare/v0.0.5...HEAD
[Unreleased]: https://github.com/gfngfn/SATySFi/compare/v0.0.6...HEAD
[0.0.6]: https://github.com/gfngfn/SATySFi/compare/v0.0.5...v0.0.6
[0.0.5]: https://github.com/gfngfn/SATySFi/compare/v0.0.4...v0.0.5
[0.0.4]: https://github.com/gfngfn/SATySFi/compare/v0.0.3...v0.0.4
[0.0.3]: https://github.com/gfngfn/SATySFi/compare/v0.0.2...v0.0.3
Expand Down
4 changes: 2 additions & 2 deletions satysfi.opam
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
opam-version: "2.0"
name: "satysfi"
version: "0.0.5"
version: "0.0.6"
maintainer: "gfngfn"
authors: [
"gfngfn"
Expand Down Expand Up @@ -39,4 +39,4 @@ depends: [
]
synopsis: "A statically-typed, functional typesetting system"
description: """
SATySFi is a typesetting system with a static type system. It consists mainly of two “layers” ― the text layer and the program layer. The former is for writing documents in LaTeX-like syntax. The latter, which has ML-like syntax, is for defining functions and commands. SATySFi enables you to write documents markuped with flexible commands of your own making. In addition, its informative type error reporting will be a good help to your writing."""
SATySFi is a typesetting system equipped with a statically-typed, functional programming language. It consists mainly of two “layers” ― the text layer and the program layer. The former is for writing documents in LaTeX-like syntax. The latter, which has OCaml-like syntax, is for defining functions and commands. SATySFi enables you to write documents markuped with flexible commands of your own making. In addition, its informative type error reporting will be a good help to your writing."""
2 changes: 1 addition & 1 deletion src/frontend/main.ml
Original file line number Diff line number Diff line change
Expand Up @@ -959,7 +959,7 @@ let error_log_environment suspended =

let arg_version () =
print_string (
" SATySFi version 0.0.5\n"
" SATySFi version 0.0.6\n"
(*
^ " (in the middle of the transition from Macrodown)\n"
^ " ____ ____ ________ _____ ______\n"
Expand Down

0 comments on commit 9accb79

Please sign in to comment.