Skip to content

Commit 5cac8bc

Browse files
committed
Prepare for patch release.
1 parent a2801fb commit 5cac8bc

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

CHANGELOG.md

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

4-
## ??? - Unreleased
4+
## 1.14.2 - 2021-01-23
5+
- Allow `JANET_PROFILE` env variable to load a profile before loading the repl.
6+
- Update `tracev` macro to allow `def` and `var` inside to work as expected.
57
- Use `(dyn :peg-grammar)` for passing a default grammar to `peg/compile` instead of loading
68
`default-peg-grammar` directly from the root environment.
79
- Add `ev/thread` for combining threading with the event loop.

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

2121
project('janet', 'c',
2222
default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'],
23-
version : '1.14.1')
23+
version : '1.14.2')
2424

2525
# Global settings
2626
janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet')

src/conf/janetconf.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66
#define JANET_VERSION_MAJOR 1
77
#define JANET_VERSION_MINOR 14
88
#define JANET_VERSION_PATCH 2
9-
#define JANET_VERSION_EXTRA "-dev"
10-
#define JANET_VERSION "1.14.2-dev"
9+
#define JANET_VERSION_EXTRA ""
10+
#define JANET_VERSION "1.14.2"
1111

1212
/* #define JANET_BUILD "local" */
1313

0 commit comments

Comments
 (0)