mirror of
				https://github.com/janet-lang/janet
				synced 2025-11-04 09:33:02 +00:00 
			
		
		
		
	1.9.1 release.
This commit is contained in:
		@@ -8,8 +8,8 @@ tasks:
 | 
				
			|||||||
    cd janet
 | 
					    cd janet
 | 
				
			||||||
    meson setup build --buildtype=release
 | 
					    meson setup build --buildtype=release
 | 
				
			||||||
    cd build
 | 
					    cd build
 | 
				
			||||||
    meson configure -Dsingle_threaded=true 
 | 
					    meson configure -Dsingle_threaded=true
 | 
				
			||||||
    meson configure -Dnanbox=false 
 | 
					    meson configure -Dnanbox=false
 | 
				
			||||||
    meson configure -Ddynamic_modules=false
 | 
					    meson configure -Ddynamic_modules=false
 | 
				
			||||||
    meson configure -Ddocstrings=false
 | 
					    meson configure -Ddocstrings=false
 | 
				
			||||||
    meson configure -Dnet=false
 | 
					    meson configure -Dnet=false
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -1,7 +1,10 @@
 | 
				
			|||||||
# Changelog
 | 
					# Changelog
 | 
				
			||||||
All notable changes to this project will be documented in this file.
 | 
					All notable changes to this project will be documented in this file.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
## Unreleased - ???
 | 
					## 1.9.1 - 2020-05-12
 | 
				
			||||||
 | 
					- Add :prefix option to declare-source
 | 
				
			||||||
 | 
					- Re-enable minimal builds with the debugger.
 | 
				
			||||||
 | 
					- Add several flags for configuring Janet on different platforms.
 | 
				
			||||||
- Fix broken meson build from 1.9.0 and add meson to CI.
 | 
					- Fix broken meson build from 1.9.0 and add meson to CI.
 | 
				
			||||||
- Fix compilation issue when nanboxing is disabled.
 | 
					- Fix compilation issue when nanboxing is disabled.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
							
								
								
									
										7
									
								
								jpm
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								jpm
									
									
									
									
									
								
							@@ -833,8 +833,11 @@ int main(int argc, const char **argv) {
 | 
				
			|||||||
    (install-rule sname path)))
 | 
					    (install-rule sname path)))
 | 
				
			||||||
 | 
					
 | 
				
			||||||
(defn declare-source
 | 
					(defn declare-source
 | 
				
			||||||
  "Create a Janet modules. This does not actually build the module(s),
 | 
					  "Create Janet modules. This does not actually build the module(s),
 | 
				
			||||||
  but registers it for packaging and installation."
 | 
					  but registers them for packaging and installation. :source should be an
 | 
				
			||||||
 | 
					  array of files and directores to copy into JANET_MODPATH or JANET_PATH.
 | 
				
			||||||
 | 
					  :prefix can optionally be given to modify the destination path to be
 | 
				
			||||||
 | 
					  (string JANET_PATH prefix source)."
 | 
				
			||||||
  [&keys {:source sources :prefix prefix}]
 | 
					  [&keys {:source sources :prefix prefix}]
 | 
				
			||||||
  (def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
 | 
					  (def path (string (dyn :modpath JANET_MODPATH) (or prefix "")))
 | 
				
			||||||
  (if (bytes? sources)
 | 
					  (if (bytes? sources)
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,8 +29,8 @@
 | 
				
			|||||||
#define JANET_VERSION_MAJOR 1
 | 
					#define JANET_VERSION_MAJOR 1
 | 
				
			||||||
#define JANET_VERSION_MINOR 9
 | 
					#define JANET_VERSION_MINOR 9
 | 
				
			||||||
#define JANET_VERSION_PATCH 1
 | 
					#define JANET_VERSION_PATCH 1
 | 
				
			||||||
#define JANET_VERSION_EXTRA "-dev"
 | 
					#define JANET_VERSION_EXTRA ""
 | 
				
			||||||
#define JANET_VERSION "1.9.1-dev"
 | 
					#define JANET_VERSION "1.9.1"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/* #define JANET_BUILD "local" */
 | 
					/* #define JANET_BUILD "local" */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user