Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.25 #1193

Merged
merged 2 commits into from
Sep 20, 2024
Merged

1.25 #1193

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions docs/pages/_en/1.0/reference/release-notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ group: Deployment & Configs

### RC

- Now RiR requires Revit 2024.3.

{% endcapture %}

{% include ltr/release_header_next.html title="Upcoming Changes" note=rc_release_notes %}
Expand Down
2 changes: 1 addition & 1 deletion src/RhinoInside.Revit/Core.cs
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ internal static ARUI.Result OnShutdown(ARUI.UIControlledApplication uiCtrlApp)
#if REVIT_2025
static readonly Version MinimumRevitVersion = new Version(2025, 0);
#elif REVIT_2024
static readonly Version MinimumRevitVersion = new Version(2024, 0);
static readonly Version MinimumRevitVersion = new Version(2024, 3);
#elif REVIT_2023
static readonly Version MinimumRevitVersion = new Version(2023, 0);
#elif REVIT_2022
Expand Down
Loading