Skip to content

Commit 7fd0748

Browse files
committed
Update to 1.4.0
1 parent 655d4b3 commit 7fd0748

File tree

5 files changed

+9
-8
lines changed

5 files changed

+9
-8
lines changed

CHANGELOG.md

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

4-
## Unreleased
4+
## 1.4.0 - 2019-10-14
55
- Add `quit` function to exit from a repl, but not always exit the entire
66
application.
7+
- Add `update-pkgs` to jpm.
78
- Integrate jpm with https://github.com/janet-lang/pkgs.git. jpm can now
89
install packages based on their short names in the package listing, which
910
can be customized via an env variable.

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.1
32+
- if "%janet_outname%"=="" set janet_outname=v1.4.0
3333
build: off
3434

3535
artifacts:

janet-installer.nsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Version
2-
!define VERSION "1.3.1"
3-
!define PRODUCT_VERSION "${VERSION}.1"
2+
!define VERSION "1.4.0"
3+
!define PRODUCT_VERSION "${VERSION}.0"
44
VIProductVersion "${PRODUCT_VERSION}"
55
VIFileVersion "${PRODUCT_VERSION}"
66

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.1')
23+
version : '1.4.0')
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
@@ -27,10 +27,10 @@
2727
#define JANETCONF_H
2828

2929
#define JANET_VERSION_MAJOR 1
30-
#define JANET_VERSION_MINOR 3
31-
#define JANET_VERSION_PATCH 1
30+
#define JANET_VERSION_MINOR 4
31+
#define JANET_VERSION_PATCH 0
3232
#define JANET_VERSION_EXTRA ""
33-
#define JANET_VERSION "1.3.1"
33+
#define JANET_VERSION "1.4.0"
3434

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

0 commit comments

Comments
 (0)