Skip to content

Commit 4ae3722

Browse files
committed
1.9.1 release.
1 parent 02167a1 commit 4ae3722

File tree

4 files changed

+13
-7
lines changed

4 files changed

+13
-7
lines changed

.builds/meson_min.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ tasks:
88
cd janet
99
meson setup build --buildtype=release
1010
cd build
11-
meson configure -Dsingle_threaded=true
12-
meson configure -Dnanbox=false
11+
meson configure -Dsingle_threaded=true
12+
meson configure -Dnanbox=false
1313
meson configure -Ddynamic_modules=false
1414
meson configure -Ddocstrings=false
1515
meson configure -Dnet=false

CHANGELOG.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## Unreleased - ???
4+
## 1.9.1 - 2020-05-12
5+
- Add :prefix option to declare-source
6+
- Re-enable minimal builds with the debugger.
7+
- Add several flags for configuring Janet on different platforms.
58
- Fix broken meson build from 1.9.0 and add meson to CI.
69
- Fix compilation issue when nanboxing is disabled.
710

jpm

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -833,8 +833,11 @@ int main(int argc, const char **argv) {
833833
(install-rule sname path)))
834834

835835
(defn declare-source
836-
"Create a Janet modules. This does not actually build the module(s),
837-
but registers it for packaging and installation."
836+
"Create Janet modules. This does not actually build the module(s),
837+
but registers them for packaging and installation. :source should be an
838+
array of files and directores to copy into JANET_MODPATH or JANET_PATH.
839+
:prefix can optionally be given to modify the destination path to be
840+
(string JANET_PATH prefix source)."
838841
[&keys {:source sources :prefix prefix}]
839842
(def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
840843
(if (bytes? sources)

src/conf/janetconf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
#define JANET_VERSION_MAJOR 1
3030
#define JANET_VERSION_MINOR 9
3131
#define JANET_VERSION_PATCH 1
32-
#define JANET_VERSION_EXTRA "-dev"
33-
#define JANET_VERSION "1.9.1-dev"
32+
#define JANET_VERSION_EXTRA ""
33+
#define JANET_VERSION "1.9.1"
3434

3535
/* #define JANET_BUILD "local" */
3636

0 commit comments

Comments
 (0)