Skip to content

Commit c0d7a49

Browse files
committed
Prepare for 1.36.0 release.
1 parent f9a6f52 commit c0d7a49

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
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.36.0 - 2024-09-07
55
- Improve error messages in `bundle/add*` functions.
66
- Add CI testing and verify tests pass on the s390x architecture.
77
- Save `:source-form` in environment entries when `*debug*` is set.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,9 +205,9 @@ build/%.bin.o: src/%.c $(JANET_HEADERS) $(JANET_LOCAL_HEADERS) Makefile
205205
########################
206206

207207
ifeq ($(UNAME), Darwin)
208-
SONAME=libjanet.1.35.dylib
208+
SONAME=libjanet.1.36.dylib
209209
else
210-
SONAME=libjanet.so.1.35
210+
SONAME=libjanet.so.1.36
211211
endif
212212

213213
build/c/shell.c: src/mainclient/shell.c

meson.build

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright (c) 2023 Calvin Rose and contributors
1+
# Copyright (c) 2024 Calvin Rose and contributors
22
#
33
# Permission is hereby granted, free of charge, to any person obtaining a copy
44
# of this software and associated documentation files (the "Software"), to
@@ -20,7 +20,7 @@
2020

2121
project('janet', 'c',
2222
default_options : ['c_std=c99', 'build.c_std=c99', 'b_lundef=false', 'default_library=both'],
23-
version : '1.35.2')
23+
version : '1.36.0')
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
@@ -6,8 +6,8 @@
66
#define JANET_VERSION_MAJOR 1
77
#define JANET_VERSION_MINOR 36
88
#define JANET_VERSION_PATCH 0
9-
#define JANET_VERSION_EXTRA "-dev"
10-
#define JANET_VERSION "1.36.0-dev"
9+
#define JANET_VERSION_EXTRA ""
10+
#define JANET_VERSION "1.36.0"
1111

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

0 commit comments

Comments
 (0)