From 74d9b5444eece6a298da9525f0fc1d4c12a56f7c Mon Sep 17 00:00:00 2001 From: Andrew Payne Date: Mon, 27 Jan 2025 11:33:22 -0500 Subject: [PATCH] bumping version to 0.16.19 --- CHANGELOG.HOPS.md | 6 ++++++ src/hops/Properties/AssemblyInfo.cs | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.HOPS.md b/CHANGELOG.HOPS.md index d42ce9d4..8d03820f 100644 --- a/CHANGELOG.HOPS.md +++ b/CHANGELOG.HOPS.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.16.19] - 2025-01-27 + +### Added + +- It is now possible for Rhino.Compute to create a headless document to be used during the solve routine. To use this feature, create a local environment variable called RHINO_COMPUTE_CREATE_HEADLESS_DOC.The value of this variable can be set to either true or false with false being the default. Each time the GrasshopperSolveHelper method of the ResthopperEndpointsModule is invoked, it checks whether Config.CreateHeadlessDoc is set to true. If it is, a brand new headless document is instantiated with tolerances and units determined by the input object. This feature is useful for third party plugins which may make calls to the Rhino Document to retrieve properties such as tolerances or units. Prior to this feature, these requests would result in an error. Now, a plugin may utilize this information for calculations. + ## [0.16.18] - 2025-01-06 ### Fixed diff --git a/src/hops/Properties/AssemblyInfo.cs b/src/hops/Properties/AssemblyInfo.cs index 01658368..a79d4397 100644 --- a/src/hops/Properties/AssemblyInfo.cs +++ b/src/hops/Properties/AssemblyInfo.cs @@ -28,7 +28,7 @@ public GhaAssemblyInfo() TheAssemblyInfo = this; } - public const string AppVersion = "0.16.18.0"; + public const string AppVersion = "0.16.19.0"; public override Bitmap Icon {