Skip to content

Commit

Permalink
bumping version to 0.16.19
Browse files Browse the repository at this point in the history
  • Loading branch information
andyopayne committed Jan 27, 2025
1 parent d187c57 commit 74d9b54
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.HOPS.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/hops/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 74d9b54

Please sign in to comment.