Skip to content

Commit 5b6b9f1

Browse files
committed
Prepare for 1.8.1 release.
1 parent 47f246b commit 5b6b9f1

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ install:
3030
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" %platform%
3131
- build_win test-install
3232
- set janet_outname=%appveyor_repo_tag_name%
33-
- if "%janet_outname%"=="" set janet_outname=v1.8.0
33+
- if "%janet_outname%"=="" set janet_outname=v1.8.1
3434
build: off
3535

3636
artifacts:

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.8.0')
23+
version : '1.8.1')
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
@@ -28,9 +28,9 @@
2828

2929
#define JANET_VERSION_MAJOR 1
3030
#define JANET_VERSION_MINOR 8
31-
#define JANET_VERSION_PATCH 0
31+
#define JANET_VERSION_PATCH 1
3232
#define JANET_VERSION_EXTRA ""
33-
#define JANET_VERSION "1.8.0"
33+
#define JANET_VERSION "1.8.1"
3434

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

0 commit comments

Comments
 (0)