Skip to content

Commit

Permalink
Bump to 1.0.1-dev.
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Nov 14, 2021
1 parent 8d3c1c7 commit 9b2bd8e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 5 additions & 2 deletions release-checklist.md
Original file line number Diff line number Diff line change
Expand Up @@ -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!
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion src/fennel/utils.fnl
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

(local view (require :fennel.view))

(local version :1.0.0)
(local version :1.0.1-dev)

;;; General-purpose helper functions

Expand Down

0 comments on commit 9b2bd8e

Please sign in to comment.