Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
Nice3point committed Apr 10, 2024
1 parent 42e3f2a commit f01f74d
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 8 deletions.
19 changes: 19 additions & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
14 changes: 6 additions & 8 deletions build/Build.Configuration.cs
Original file line number Diff line number Diff line change
@@ -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";
Expand All @@ -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"}
};
}
}

0 comments on commit f01f74d

Please sign in to comment.