diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index e69de29b..00000000 diff --git a/CHANGELOG.md b/CHANGELOG.md index bac550c9..2549edc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ All notable changes to this project will be documented in this file. ## 1.10.1 - 2020-06-14 +- Add `:no-compile` to `create-executable` option for jpm. - Fix bug with the `trace` function. - Add `:h`, `:a`, and `:c` flags to `thread/new` for creating new kinds of threads. By default, threads will now consume much less memory per thread, but sending data between diff --git a/Makefile b/Makefile index c6cb3d80..662a83ca 100644 --- a/Makefile +++ b/Makefile @@ -149,7 +149,7 @@ build/janet.c: build/janet_boot src/boot/boot.janet ##### Amalgamation ##### ######################## -SONAME=libjanet.so.1.9 +SONAME=libjanet.so.1.10 build/shell.c: src/mainclient/shell.c cp $< $@ diff --git a/src/conf/janetconf.h b/src/conf/janetconf.h index 72a4c577..100e2156 100644 --- a/src/conf/janetconf.h +++ b/src/conf/janetconf.h @@ -29,7 +29,7 @@ #define JANET_VERSION_MAJOR 1 #define JANET_VERSION_MINOR 10 #define JANET_VERSION_PATCH 0 -#define JANET_VERSION_EXTRA "-dev" +#define JANET_VERSION_EXTRA "" #define JANET_VERSION "1.10.0" /* #define JANET_BUILD "local" */