Skip to content

Commit 7491421

Browse files
committed
Release patch relase due to bad version bumping.
1 parent 9d0da74 commit 7491421

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-
## 1.21.0 - 2022-03-21
4+
## 1.21.1 - 2022-03-27
55
- C functions `janet_dobytes` and `janet_dostring` will now enter the event loop if it is enabled.
66
- Fix hashing regression - hash of negative 0 must be the same as positive 0 since they are equal.
77
- The `flycheck` function no longer pollutes the module/cache

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', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
23-
version : '1.20.1')
23+
version : '1.21.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
@@ -4,10 +4,10 @@
44
#define JANETCONF_H
55

66
#define JANET_VERSION_MAJOR 1
7-
#define JANET_VERSION_MINOR 20
7+
#define JANET_VERSION_MINOR 21
88
#define JANET_VERSION_PATCH 1
99
#define JANET_VERSION_EXTRA ""
10-
#define JANET_VERSION "1.20.1"
10+
#define JANET_VERSION "1.21.1"
1111

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

0 commit comments

Comments
 (0)