Skip to content

Commit

Permalink
Release 1.5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
technomancy committed Aug 25, 2024
1 parent 9fd0f98 commit ae60a38
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 15 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.5.1 / ???
## 1.5.1 / 2024-08-24

### Bug Fixes

Expand Down
4 changes: 3 additions & 1 deletion man/man3/fennel-api.3
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "fennel-api" "3" "2024-06-23" "fennel 1.5.0" "Fennel\[aq]s Lua API"
.TH "fennel-api" "3" "2024-08-24" "fennel 1.5.1" "Fennel\[aq]s Lua API"
.hy
.SH NAME
.PP
Expand Down Expand Up @@ -43,6 +43,8 @@ current environment.
the line numbers match up with the Fennel input code; useful for
situation where code that isn\[aq]t under your control will print the
stack traces.
This is meant as a debugging aid and cannot give exact numbers in all
cases.
.IP \[bu] 2
\f[V]useMetadata\f[R]: enables or disables metadata, allowing use of the
\f[V],doc\f[R] repl command.
Expand Down
5 changes: 4 additions & 1 deletion man/man5/fennel-reference.5
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "fennel-reference" "5" "2024-06-23" "fennel 1.5.0" "Fennel Reference"
.TH "fennel-reference" "5" "2024-08-24" "fennel 1.5.1" "Fennel Reference"
.hy
.SH NAME
.PP
Expand Down Expand Up @@ -82,6 +82,9 @@ The syntax for numbers is the same as
Lua\[aq]s (https://www.lua.org/manual/5.4/manual.html#3.1), except that
underscores may be used to separate digits for readability.
Non-ASCII digits are not yet supported.
Infinity and negative infinity are represented as \f[V].inf\f[R] and
\f[V]-.inf\f[R].
NaN and negative Nan are \f[V].nan\f[R] and \f[V]-.nan\f[R].
.PP
The syntax for strings uses double-quotes \f[V]\[dq]\f[R] around the
string\[aq]s contents.
Expand Down
2 changes: 1 addition & 1 deletion man/man7/fennel-tutorial.7
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
. ftr VB CB
. ftr VBI CBI
.\}
.TH "fennel-tutorial" "7" "2024-06-23" "fennel 1.5.0" "Getting Started with Fennel"
.TH "fennel-tutorial" "7" "2024-08-24" "fennel 1.5.1" "Getting Started with Fennel"
.hy
.SH NAME
.PP
Expand Down
20 changes: 10 additions & 10 deletions setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,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.5.0)
2. Run `chmod +x fennel-1.5.0` to make it executable
1. Download [the fennel script](https://fennel-lang.org/downloads/fennel-1.5.1)
2. Run `chmod +x fennel-1.5.1` to make it executable
3. Download [and verify](https://fennel-lang.org/security#signatures)
the [signature](https://fennel-lang.org/downloads/fennel-1.5.0.asc)
the [signature](https://fennel-lang.org/downloads/fennel-1.5.1.asc)
(optional).
4. Move `fennel-1.5.0` to a directory on your `$PATH`, such as `/usr/local/bin`
4. Move `fennel-1.5.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 @@ -57,11 +57,11 @@ 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.5.0-x86_64)
([signature](https://fennel-lang.org/downloads/fennel-1.5.0-x86_64.asc))
- [Windows x86 32-bit](https://fennel-lang.org/downloads/fennel-1.5.0-windows32.exe)
([signature](https://fennel-lang.org/downloads/fennel-1.5.0-windows32.exe.asc))
2. Run `chmod +x fennel-1.5.0*` to make it executable
- [GNU/Linux x86_64](https://fennel-lang.org/downloads/fennel-1.5.1-x86_64)
([signature](https://fennel-lang.org/downloads/fennel-1.5.1-x86_64.asc))
- [Windows x86 32-bit](https://fennel-lang.org/downloads/fennel-1.5.1-windows32.exe)
([signature](https://fennel-lang.org/downloads/fennel-1.5.1-windows32.exe.asc))
2. Run `chmod +x fennel-1.5.1*` to make it executable
3. Download [and verify](https://fennel-lang.org/security#signatures) the signature
(optional).
4. Move the downloaded binary to a directory on your `$PATH`, such as `/usr/local/bin`
Expand Down Expand Up @@ -93,7 +93,7 @@ them all here; please [see the wiki page on distribution for details](https://wi

The Fennel compiler can be added to your application and then loaded from Lua.

1. Add [fennel.lua](https://fennel-lang.org/downloads/fennel-1.5.0.lua) to your code repository.
1. Add [fennel.lua](https://fennel-lang.org/downloads/fennel-1.5.1.lua) to your code repository.
2. Add the following line to your Lua code:

```lua
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.5.1-dev)
(local version :1.5.1)

;;; Lua VM detection helper functions

Expand Down

0 comments on commit ae60a38

Please sign in to comment.