mirror of
				https://github.com/janet-lang/janet
				synced 2025-10-30 23:23:07 +00:00 
			
		
		
		
	Fix broken links in README.md
This commit is contained in:
		| @@ -1,6 +1,9 @@ | ||||
| # Changelog | ||||
| All notable changes to this project will be documented in this file. | ||||
|  | ||||
| ## Unreleased - ??? | ||||
| - Update meson build script to fix bug on Debian's version of meson | ||||
|  | ||||
| ## 1.11.3 - 2020-08-03 | ||||
| - Add `JANET_HASHSEED` environment variable when `JANET_PRF` is enabled. | ||||
| - Expose `janet_cryptorand` in C API. | ||||
|   | ||||
| @@ -2,10 +2,10 @@ | ||||
|   | ||||
| [](https://ci.appveyor.com/project/bakpakin/janet/branch/master) | ||||
| [](https://travis-ci.org/janet-lang/janet) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/freebsd.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/openbsd.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/meson.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/meson_min.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/freebsd.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/openbsd.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/meson.yml?) | ||||
| [](https://builds.sr.ht/~bakpakin/janet/commits/meson_min.yml?) | ||||
|  | ||||
| <img src="https://raw.githubusercontent.com/janet-lang/janet/master/assets/janet-w200.png" alt="Janet logo" width=200 align="left"> | ||||
|  | ||||
|   | ||||
| @@ -20,7 +20,7 @@ | ||||
|  | ||||
| project('janet', 'c', | ||||
|   default_options : ['c_std=c99', 'b_lundef=false', 'default_library=both'], | ||||
|   version : '1.11.3') | ||||
|   version : '1.11.4') | ||||
|  | ||||
| # Global settings | ||||
| janet_path = join_paths(get_option('prefix'), get_option('libdir'), 'janet') | ||||
|   | ||||
| @@ -28,9 +28,9 @@ | ||||
|  | ||||
| #define JANET_VERSION_MAJOR 1 | ||||
| #define JANET_VERSION_MINOR 11 | ||||
| #define JANET_VERSION_PATCH 3 | ||||
| #define JANET_VERSION_EXTRA "" | ||||
| #define JANET_VERSION "1.11.3" | ||||
| #define JANET_VERSION_PATCH 4 | ||||
| #define JANET_VERSION_EXTRA "-dev" | ||||
| #define JANET_VERSION "1.11.4-dev" | ||||
|  | ||||
| /* #define JANET_BUILD "local" */ | ||||
|  | ||||
|   | ||||
| @@ -282,6 +282,8 @@ static Janet cfun_io_fclose(int32_t argc, Janet *argv) { | ||||
|         iof->flags |= JANET_FILE_CLOSED; | ||||
|         if (status == -1) janet_panic("could not close file"); | ||||
|         return janet_wrap_integer(WEXITSTATUS(status)); | ||||
| #else | ||||
|         return janet_wrap_nil(); | ||||
| #endif | ||||
|     } else { | ||||
|         if (fclose(iof->file)) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Calvin Rose
					Calvin Rose