Skip to content

Commit 7809f89

Browse files
committed
1.3.1 Release
Small changes, mostly just fixing minor bugs.
1 parent 9408607 commit 7809f89

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
# Changelog
22
All notable changes to this project will be documented in this file.
33

4-
## Unreleased
4+
## 1.3.1 - 2019-09-21
55
- Fix some linking issues when creating executables with native dependencies.
66
- jpm now runs each test script in a new interpreter.
77
- Fix an issue that prevent some valid programs from compiling.
88
- Add `mean` to core.
9+
- Abstract types that implement the `:+`, `:-`, `:*`, `:/`, `:>`, `:==`, `:<`,
10+
`:<=`, and `:>=` methods will work with the corresponding built-in
11+
arithmetic functions. This means built-in integer types can now be used as
12+
normal number values in many contexts.
913
- Allow (length x) on typed arrays an other abstract types that implement
1014
the :length method.
1115

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ install:
2929
- call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvars32.bat"
3030
- build_win test-install
3131
- set janet_outname=%appveyor_repo_tag_name%
32-
- if "%janet_outname%"=="" set janet_outname=v1.3.0
32+
- if "%janet_outname%"=="" set janet_outname=v1.3.1
3333
build: off
3434

3535
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.3.0')
23+
version : '1.3.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 3
31-
#define JANET_VERSION_PATCH 0
31+
#define JANET_VERSION_PATCH 1
3232
#define JANET_VERSION_EXTRA ""
33-
#define JANET_VERSION "1.3.0"
33+
#define JANET_VERSION "1.3.1"
3434

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

0 commit comments

Comments
 (0)