From 2b5b00fe4c52ef6d838182b67786f35498d84dfe Mon Sep 17 00:00:00 2001 From: Github Actions Date: Fri, 4 Oct 2024 19:25:41 +0000 Subject: [PATCH 1/2] Version bump --- changelog.md | 6 +++++- gradle.properties | 6 +++--- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/changelog.md b/changelog.md index 11c451d..120c228 100644 --- a/changelog.md +++ b/changelog.md @@ -9,6 +9,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.0.0-beta17] - 2024-10-04 + ## [1.0.0-beta16] - 2024-09-27 ## [1.0.0-beta15] - 2024-09-20 @@ -43,7 +45,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - First iteration of this runtime -[Unreleased]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta16...HEAD +[Unreleased]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta17...HEAD + +[1.0.0-beta17]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta16...v1.0.0-beta17 [1.0.0-beta16]: https://github.com/ortus-boxlang/boxlang-servlet/compare/v1.0.0-beta15...v1.0.0-beta16 diff --git a/gradle.properties b/gradle.properties index 2641d9d..84fb020 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,5 +1,5 @@ -#Fri Sep 27 20:20:29 UTC 2024 -boxlangVersion=1.0.0-beta17 +#Fri Oct 04 19:25:39 UTC 2024 +boxlangVersion=1.0.0-beta18 jdkVersion=21 -version=1.0.0-beta17 +version=1.0.0-beta18 group=ortus.boxlang From 958c4b1950aa7b43e200001bd35be8ab9f474357 Mon Sep 17 00:00:00 2001 From: Brad Wood Date: Fri, 11 Oct 2024 01:23:27 -0500 Subject: [PATCH 2/2] Output version on startup --- src/main/java/ortus/boxlang/servlet/BoxLangServlet.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/main/java/ortus/boxlang/servlet/BoxLangServlet.java b/src/main/java/ortus/boxlang/servlet/BoxLangServlet.java index 6d951e9..79d2cfe 100644 --- a/src/main/java/ortus/boxlang/servlet/BoxLangServlet.java +++ b/src/main/java/ortus/boxlang/servlet/BoxLangServlet.java @@ -32,6 +32,7 @@ import ortus.boxlang.runtime.BoxRuntime; import ortus.boxlang.runtime.scopes.Key; +import ortus.boxlang.runtime.types.IStruct; import ortus.boxlang.web.WebRequestExecutor; import ortus.boxlang.web.exchange.BoxHTTPServletExchange; @@ -89,6 +90,10 @@ public void init( ServletConfig config ) throws ServletException { this.runtime.getInterceptorService().register( new ServletMappingInterceptor( config.getServletContext() ) ); System.out.println( "Ortus BoxLang Servlet initialized!" ); + IStruct versionInfo = runtime.getVersionInfo(); + System.out.println( + "Ortus BoxLang Version: " + versionInfo.getAsString( Key.of( "version" ) ) + " (Built On: " + versionInfo.getAsString( Key.of( "buildDate" ) ) + + ")" ); } /**