commit 343b293593d27b2318fbbcce0fff35d80617ec50 parent 8f5b026c668df905821050bb827346e66d5600c8 Author: Vincent Forest <vincent.forest@meso-star.com> Date: Thu, 20 Nov 2025 10:33:31 +0100 Prepare version 0.3 Bump version number and write release note Diffstat:
| M | README.md | | | 13 | +++++++++++++ |
| M | config.mk | | | 2 | +- |
2 files changed, 14 insertions(+), 1 deletion(-)
diff --git a/README.md b/README.md @@ -18,6 +18,19 @@ Edit config.mk as needed, then run: ## Release notes +### Version 0.3.0 + +- Add the manual page. +- Add the `-r` option to reverse the normals of the input StL file. +- Update the meaning of the `-a` and `-b` options. + They define not only the format of the output StL file, but also the + format of the input StL file when it is provided on stdin. +- Update from Star-StL 0.5.2 to Star-StL 0.7. + Handle API breaks introduced by the new version. +- Improve the build system. + Simplify it by doing everything in one place (the makefile). + Add macros to control installation sub-directories. + ### Version 0.2.0 - Add `-d` to get the description of the geometry (to stderr). diff --git a/config.mk b/config.mk @@ -1,5 +1,5 @@ VERSION_MAJOR = 0 -VERSION_MINOR = 2 +VERSION_MINOR = 3 VERSION_PATCH = 0 VERSION = $(VERSION_MAJOR).$(VERSION_MINOR).$(VERSION_PATCH)