Skip to content

Commit 392d5d5

Browse files
committed
Fix build info for 1.13.1
1 parent 9bc996a commit 392d5d5

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
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.13.0 - 2020-12-13
4+
## 1.13.1 - 2020-12-13
55
- Pretty printing a table with a prototype will look for `:_name` instead of `:name`
66
in the prototype table to tag the output.
77
- `match` macro implementation changed to be tail recursive.

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@ build/janet.c: build/janet_boot src/boot/boot.janet
157157
##### Amalgamation #####
158158
########################
159159

160-
SONAME=libjanet.so.1.12
160+
SONAME=libjanet.so.1.13
161161

162162
build/shell.c: src/mainclient/shell.c
163163
cp $< $@

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

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

src/conf/janetconf.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@
55

66
#define JANET_VERSION_MAJOR 1
77
#define JANET_VERSION_MINOR 13
8-
#define JANET_VERSION_PATCH 0
9-
#define JANET_VERSION_EXTRA "-dev"
10-
#define JANET_VERSION "1.13.0-dev"
8+
#define JANET_VERSION_PATCH 1
9+
#define JANET_VERSION_EXTRA ""
10+
#define JANET_VERSION "1.13.1"
1111

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

0 commit comments

Comments
 (0)