Skip to content

Commit 3a4d56a

Browse files
committed
Patch release.
1 parent 63bb93f commit 3a4d56a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

+1-1
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-
## 1.29.0 - 2023-06-19
4+
## 1.29.1 - 2023-06-19
55
- Add support for passing booleans to PEGs for "always" and "never" matching.
66
- Allow dictionary types for `take` and `drop`
77
- Fix bug with closing channels while other fibers were waiting on them - `ev/take`, `ev/give`, and `ev/select` will now return the correct (documented) value when another fiber closes the channel.

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.28.0')
23+
version : '1.29.1')
2424

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

src/conf/janetconf.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
#define JANET_VERSION_MAJOR 1
77
#define JANET_VERSION_MINOR 29
8-
#define JANET_VERSION_PATCH 0
8+
#define JANET_VERSION_PATCH 1
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.29.0"
10+
#define JANET_VERSION "1.29.1"
1111

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

0 commit comments

Comments
 (0)