Skip to content

Commit

Permalink
Release 1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Jul 7, 2023
1 parent 3b03617 commit 49dc5ab
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 16 deletions.
2 changes: 1 addition & 1 deletion changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Note that since 0.3.0, no deprecations have actually resulted in
removals. They are advisory only and we have no plans to break the
deprecated forms.

## 1.3.1 / ???
## 1.3.1 / 2023-07-07

### New Features

Expand Down
8 changes: 8 additions & 0 deletions rockspecs/fennel-1.3.1-1.rockspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
package = "fennel"
local fennel_version = "1.3.1"
version = (fennel_version .. "-1")
source = {url = ("https://fennel-lang.org/downloads/fennel-" .. fennel_version .. ".tar.gz")}
description = {summary = "A lisp that compiles to Lua", detailed = ("Get your parens on--write macros and " .. "homoiconic code on the Lua runtime!"), license = "MIT", homepage = "https://fennel-lang.org/"}
dependencies = {"lua >= 5.1"}
build = {type = "builtin", install = {bin = {fennel = "fennel"}}, modules = {fennel = "fennel.lua"}}
return nil
28 changes: 14 additions & 14 deletions setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,12 @@ installed on your system.
This method requires you to manually update the `fennel` script when
you want to use a newer version that has come out.

1. Download [the fennel script](https://fennel-lang.org/downloads/fennel-1.3.0)
2. Run `chmod +x fennel-1.3.0` to make it executable
3. Download [the signature](https://fennel-lang.org/downloads/fennel-1.3.0.asc)
4. Run `gpg --verify fennel-1.3.0.asc` to verify that the fennel
1. Download [the fennel script](https://fennel-lang.org/downloads/fennel-1.3.1)
2. Run `chmod +x fennel-1.3.1` to make it executable
3. Download [the signature](https://fennel-lang.org/downloads/fennel-1.3.1.asc)
4. Run `gpg --verify fennel-1.3.1.asc` to verify that the fennel
script is from the Fennel creators (optional but recommended)
5. Move `fennel-1.3.0` to a directory on your `$PATH`, such as `/usr/local/bin`
5. Move `fennel-1.3.1` to a directory on your `$PATH`, such as `/usr/local/bin`

**Note**: You can rename the script to `fennel` for convenience. Or
you can leave the version in the name, which makes it easy to keep
Expand All @@ -58,14 +58,14 @@ This method requires you to manually update the `fennel` binary when
you want to use a newer version that has come out.

1. Choose one the options below, depending on your system:
- [GNU/Linux x86_64](https://fennel-lang.org/downloads/fennel-1.3.0-x86_64)
([signature](https://fennel-lang.org/downloads/fennel-1.3.0-x86_64.asc))
- [GNU/Linux arm32](https://fennel-lang.org/downloads/fennel-1.3.0-arm32)
([signature](https://fennel-lang.org/downloads/fennel-1.3.0-arm32.asc))
- [Windows x86 32-bit](https://fennel-lang.org/downloads/fennel-1.3.0-windows32.exe)
([signature](https://fennel-lang.org/downloads/fennel-1.3.0-windows32.exe.asc))
2. Run `chmod +x fennel-1.3.0*` to make it executable (not needed on Windows).
3. Download the signature and confirm it matches using `gpg --verify fennel-1.3.0*.asc`
- [GNU/Linux x86_64](https://fennel-lang.org/downloads/fennel-1.3.1-x86_64)
([signature](https://fennel-lang.org/downloads/fennel-1.3.1-x86_64.asc))
- [GNU/Linux arm32](https://fennel-lang.org/downloads/fennel-1.3.1-arm32)
([signature](https://fennel-lang.org/downloads/fennel-1.3.1-arm32.asc))
- [Windows x86 32-bit](https://fennel-lang.org/downloads/fennel-1.3.1-windows32.exe)
([signature](https://fennel-lang.org/downloads/fennel-1.3.1-windows32.exe.asc))
2. Run `chmod +x fennel-1.3.1*` to make it executable (not needed on Windows).
3. Download the signature and confirm it matches using `gpg --verify fennel-1.3.1*.asc`
(optional but recommended).
4. Move the downloaded binary to a directory on your `$PATH`, such as `/usr/local/bin`

Expand Down Expand Up @@ -98,7 +98,7 @@ The Fennel compiler can be added to your code repository, and then
loaded from Lua.

1. Get the `fennel.lua` library. You can get this from a
[release tarball](https://fennel-lang.org/downloads/fennel-1.3.0.tar.gz)
[release tarball](https://fennel-lang.org/downloads/fennel-1.3.1.tar.gz)
or by running `make` in a source checkout.
2. Add `fennel.lua` to your code repository.
3. Add the following lines to your Lua code:
Expand Down
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.3.1-dev)
(local version :1.3.1)

;;; Lua VM detection helper functions

Expand Down

0 comments on commit 49dc5ab

Please sign in to comment.