Skip to content

Commit f7ee8bd

Browse files
committed
Update to version 1.7.0.
1 parent 1bdde9c commit f7ee8bd

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
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-
### Unreleased
4+
### 1.7.0 - 2020-02-01
55
- Remove `file/fileno` and `file/fdopen`.
66
- Remove `==`, `not==`, `order<`, `order>`, `order<=`, and `order>=`. Instead, use the normal
77
comparison and equality functions.

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.6.1
33+
- if "%janet_outname%"=="" set janet_outname=v1.7.0
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.6.1-dev')
23+
version : '1.7.0')
2424

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

src/boot/boot.janet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@
596596
(defn first
597597
"Get the first element from an indexed data structure."
598598
[xs]
599-
(in xs 0))
599+
(get xs 0))
600600

601601
(defn last
602602
"Get the last element from an indexed data structure."

src/conf/janetconf.h

Lines changed: 4 additions & 4 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 6
31-
#define JANET_VERSION_PATCH 1
32-
#define JANET_VERSION_EXTRA "-dev"
33-
#define JANET_VERSION "1.6.1-dev"
30+
#define JANET_VERSION_MINOR 7
31+
#define JANET_VERSION_PATCH 0
32+
#define JANET_VERSION_EXTRA ""
33+
#define JANET_VERSION "1.7.0"
3434

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

0 commit comments

Comments
 (0)