mirror of
https://github.com/janet-lang/janet
synced 2025-01-11 08:00:27 +00:00
1.9.1 release.
This commit is contained in:
parent
02167a15d1
commit
4ae372262b
@ -1,7 +1,10 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
All notable changes to this project will be documented in this file.
|
All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
## Unreleased - ???
|
## 1.9.1 - 2020-05-12
|
||||||
|
- Add :prefix option to declare-source
|
||||||
|
- Re-enable minimal builds with the debugger.
|
||||||
|
- Add several flags for configuring Janet on different platforms.
|
||||||
- Fix broken meson build from 1.9.0 and add meson to CI.
|
- Fix broken meson build from 1.9.0 and add meson to CI.
|
||||||
- Fix compilation issue when nanboxing is disabled.
|
- Fix compilation issue when nanboxing is disabled.
|
||||||
|
|
||||||
|
7
jpm
7
jpm
@ -833,8 +833,11 @@ int main(int argc, const char **argv) {
|
|||||||
(install-rule sname path)))
|
(install-rule sname path)))
|
||||||
|
|
||||||
(defn declare-source
|
(defn declare-source
|
||||||
"Create a Janet modules. This does not actually build the module(s),
|
"Create Janet modules. This does not actually build the module(s),
|
||||||
but registers it for packaging and installation."
|
but registers them for packaging and installation. :source should be an
|
||||||
|
array of files and directores to copy into JANET_MODPATH or JANET_PATH.
|
||||||
|
:prefix can optionally be given to modify the destination path to be
|
||||||
|
(string JANET_PATH prefix source)."
|
||||||
[&keys {:source sources :prefix prefix}]
|
[&keys {:source sources :prefix prefix}]
|
||||||
(def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
|
(def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
|
||||||
(if (bytes? sources)
|
(if (bytes? sources)
|
||||||
|
@ -29,8 +29,8 @@
|
|||||||
#define JANET_VERSION_MAJOR 1
|
#define JANET_VERSION_MAJOR 1
|
||||||
#define JANET_VERSION_MINOR 9
|
#define JANET_VERSION_MINOR 9
|
||||||
#define JANET_VERSION_PATCH 1
|
#define JANET_VERSION_PATCH 1
|
||||||
#define JANET_VERSION_EXTRA "-dev"
|
#define JANET_VERSION_EXTRA ""
|
||||||
#define JANET_VERSION "1.9.1-dev"
|
#define JANET_VERSION "1.9.1"
|
||||||
|
|
||||||
/* #define JANET_BUILD "local" */
|
/* #define JANET_BUILD "local" */
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user