diff --git a/Makefile b/Makefile index d4b51d4f..d5b774a5 100644 --- a/Makefile +++ b/Makefile @@ -115,7 +115,7 @@ $(LUA_DIR)/src/liblua-mingw.a: $(LUA_DIR) mv $(LUA_DIR)/src/liblua.a $@ $(LUA_DIR)/src/liblua-arm32.a: $(LUA_DIR) - $(MAKE) -C $(LUA_DIR) clean liblua.a CC=arm-linux-gnueabihf-gcc + $(MAKE) -C $(LUA_DIR)/src clean liblua.a CC=arm-linux-gnueabihf-gcc mv $(LUA_DIR)/src/liblua.a $@ ci: testall lint fuzz fennel @@ -143,7 +143,7 @@ fennel.tar.gz: README.md LICENSE fennel.1 fennel fennel.lua \ cp -r $^ fennel-$(VERSION) tar czf $@ fennel-$(VERSION) -uploadrock: rockspecs/fennel-$(VERSION)-1.rockspec uploadtar +uploadrock: rockspecs/fennel-$(VERSION)-1.rockspec luarocks --local build $< $(HOME)/.luarocks/bin/fennel --version | grep $(VERSION) luarocks --local remove fennel diff --git a/changelog.md b/changelog.md index 1eae7834..f71d01eb 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,10 @@ Changes are **marked in bold** which could result in backwards-incompatibility. +## 1.0.1 / ??? + +* ??? + ## 1.0.0 / 2021-11-14 ### New Features diff --git a/release-checklist.md b/release-checklist.md index 25fc659b..bd6eb8ab 100644 --- a/release-checklist.md +++ b/release-checklist.md @@ -16,8 +16,11 @@ This document is intended for Fennel maintainers. ## Uploading -1. Run `git push && git push --tags`. -2. Run `make release VERSION=$VERSION`. +The `make release` command should be run on a system with the lowest +available glibc for maximum compatibility. + +1. Run `make release VERSION=$VERSION`. +2. Run `git push && git push --tags`. 3. Update the submodule in the fennel-lang.org repository. Announce it on the mailing list. Fennel is now released! diff --git a/rockspecs/fennel-1.0.0-1-rockspec b/rockspecs/fennel-1.0.0-1.rockspec similarity index 100% rename from rockspecs/fennel-1.0.0-1-rockspec rename to rockspecs/fennel-1.0.0-1.rockspec diff --git a/src/fennel/utils.fnl b/src/fennel/utils.fnl index ff5d765a..c1f61fa3 100644 --- a/src/fennel/utils.fnl +++ b/src/fennel/utils.fnl @@ -5,7 +5,7 @@ (local view (require :fennel.view)) -(local version :1.0.0) +(local version :1.0.1-dev) ;;; General-purpose helper functions