Skip to content

Commit a0ddfcb

Browse files
committed
Prepare for 1.19.0 release.
1 parent 3df7921 commit a0ddfcb

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

CHANGELOG.md

+3-1
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.19.0 - 2021-11-27
5+
- Add `math/log-gamma` to replace `math/gamma`, and change `math/gamma` to be the expected gamma function.
6+
- Fix leaking file-descriptors in os/spawn and os/execute.
57
- Ctrl-C will now raise SIGINT.
68
- Allow quoted literals in the `match` macro to behave as expected in patterns.
79
- Fix windows net related bug for TCP servers.

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ build/c/janet.c: build/janet_boot src/boot/boot.janet
165165
##### Amalgamation #####
166166
########################
167167

168-
SONAME=libjanet.so.1.18
168+
SONAME=libjanet.so.1.19
169169

170170
build/c/shell.c: src/mainclient/shell.c
171171
cp $< $@

meson.build

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020

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

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

src/conf/janetconf.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
#define JANETCONF_H
55

66
#define JANET_VERSION_MAJOR 1
7-
#define JANET_VERSION_MINOR 18
8-
#define JANET_VERSION_PATCH 2
9-
#define JANET_VERSION_EXTRA "-dev"
10-
#define JANET_VERSION "1.18.2-dev"
7+
#define JANET_VERSION_MINOR 19
8+
#define JANET_VERSION_PATCH 0
9+
#define JANET_VERSION_EXTRA ""
10+
#define JANET_VERSION "1.19.0"
1111

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

0 commit comments

Comments
 (0)