Skip to content

Commit da93a73

Browse files
committed
Version bump to 1.6.0.
1 parent 31f8778 commit da93a73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

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

4-
### Unreleased
4+
### 1.6.0 - 2019-12-22
55
- Add `thread/` module to the core.
66
- Allow seeding RNGs with any sequence of bytes. This provides
77
a wider key space for the RNG. Exposed in C as `janet_rng_longseed`.

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.6.0-dev')
23+
version : '1.6.0')
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
@@ -29,8 +29,8 @@
2929
#define JANET_VERSION_MAJOR 1
3030
#define JANET_VERSION_MINOR 6
3131
#define JANET_VERSION_PATCH 0
32-
#define JANET_VERSION_EXTRA "-dev"
33-
#define JANET_VERSION "1.6.0-dev"
32+
#define JANET_VERSION_EXTRA ""
33+
#define JANET_VERSION "1.6.0"
3434

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

0 commit comments

Comments
 (0)