diff --git a/Changelog.md b/Changelog.md index 4d019e15..dd828684 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,24 @@ # Changelog +# 2025-04-02 **2025.0.1** + +## HotFix + +- Fixed Search Bar causing Revit crashing https://github.com/jeremytammik/RevitLookup/issues/214 + +## Improvements + +- Ref parameter type support +- Add `BasePoint.GetSurveyPoint` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/212 +- Add `BasePoint.GetProjectBasePoint` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/212 +- Add `InternalOrigin.Get` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/212 +- Add `ElevationMarker.GetViewId` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/213 +- Add `CurtainGrid.GetCell` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/215 +- Add `CurtainGrid.GetPanel` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/215 +- Add `Panel.GetRefGridLines` support by @SergeyNefyodov in https://github.com/jeremytammik/RevitLookup/pull/215 + +Many thanks to @SergeyNefyodov for contributing to RevitLookup + # 2025-04-02 **2025.0.0** ## General diff --git a/build/Build.Configuration.cs b/build/Build.Configuration.cs index 5b2333ad..ec0f6263 100644 --- a/build/Build.Configuration.cs +++ b/build/Build.Configuration.cs @@ -1,6 +1,4 @@ -using Nuke.Common.IO; - -sealed partial class Build +sealed partial class Build { readonly AbsolutePath ArtifactsDirectory = RootDirectory / "output"; readonly AbsolutePath ChangeLogPath = RootDirectory / "Changelog.md"; @@ -20,11 +18,11 @@ protected override void OnBuildInitialized() VersionMap = new() { - {"Release R21", "2021.3.0"}, - {"Release R22", "2022.3.0"}, - {"Release R23", "2023.3.0"}, - {"Release R24", "2024.1.0"}, - {"Release R25", "2025.0.0"} + {"Release R21", "2021.3.1"}, + {"Release R22", "2022.3.1"}, + {"Release R23", "2023.3.1"}, + {"Release R24", "2024.1.1"}, + {"Release R25", "2025.0.1"} }; } } \ No newline at end of file