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

Initial bump to xbim v6.0.0.0 version numbers #492

Merged
merged 2 commits into from
Feb 20, 2023
Merged
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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,40 @@

All notable changes to this project should be documented in this file

## [v6.0] Pending Release

This is the 6.0 release of XBIM Toolkit
### Added

- Added net6.0 support to all Essentials components (including Esent) [#432](https://github.com/xBimTeam/XbimEssentials/issues/432) [#451](https://github.com/xBimTeam/XbimEssentials/issues/451)
- Added Common units to new projects
- Docs are automatically generated with each build [#449](https://github.com/xBimTeam/XbimEssentials/issues/449) [#457](https://github.com/xBimTeam/XbimEssentials/issues/457)
- Support for IFC 4x3 schema [#450](https://github.com/xBimTeam/XbimEssentials/issues/450)
- Added support for Dependency Injection of services, with internal services provider [#455](https://github.com/xBimTeam/XbimEssentials/issues/455)
- See [Tests for examples](https://github.com/xBimTeam/XbimEssentials/blob/develop/Tests/DependencyInjectionTests.cs)
- Optimisation to Esent SaveAs

### Fixed
- Fixed Instances Count on Esent Models
- Fix in Parser for G17 formatatting on Double values
- Fix incorrect Application Developer Name [#466]
- Fix Memory leak in SI Units [#361](https://github.com/xBimTeam/XbimEssentials/issues/361)

### Changed
- Removed need to call `IfcStore.ModelProviderFactory.UseHeuristicModelProvider();` before using IfcStore.
- Replaced with optional call to `XbimServices.ConfigureServices(s => s.AddXbimToolkit(opt => opt.AddHeuristicModel()));` ... and equivalent.
- ModelProviderFactory replaced by standard DI / service Provider.
- IfcStore.ModelProvider deprecated
- Methods accepting ILogger parameters deprecated - Loggers can be injected (if using DI) or are provided by the XbimServices ServiceProvider

### Removed

- Removed static Xbim.Commom.XbimLogger - replaced with a DI friendly internal service provide Logger functionality when needed [#455](https://github.com/xBimTeam/XbimEssentials/issues/455)
- Removed support for .NET Framework targets prior to net472 - now out of support by Microsoft
- Removed targeting of .NET 3.1 (Out of support, but can still be used via netstandard2.0)
- Removed Default Microsoft.Extensions.Logging implementation - now requires explicit setup via Xbim.Common.Configuration.XbimServices


## [v5.1.527] 2019-05-30

This is the 5.1 release of XBIM
Expand Down
5 changes: 2 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -9,21 +9,20 @@
</PropertyGroup>

<PropertyGroup>
<Version>5.1.0.0</Version>
<Version>6.0.0.0</Version>
<Copyright>Copyright © XBIM Ltd</Copyright>
<Company>Xbim Ltd.</Company>
<Authors>Steve Lockley, Martin Cerny and XBIMTeam Contributors</Authors>
<Product>XBIM Essentials</Product>
<PackageLicenseExpression>CDDL-1.0</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/xBimTeam/XbimEssentials</PackageProjectUrl>
<PackageIcon>xbim-toolkit-icon.png</PackageIcon>
<PackageReleaseNotes>Version 5.1 update. See https://github.com/xBimTeam/XbimEssentials/blob/master/CHANGELOG.md
<PackageReleaseNotes>Version 6.0 update. See https://github.com/xBimTeam/XbimEssentials/blob/master/CHANGELOG.md
</PackageReleaseNotes>
<PackageTags>BIM, IFC, IfcXml, IfcZip, Ifc4, COBie, BuildingSmart</PackageTags>
<RepositoryUrl>https://github.com/xBimTeam/XbimEssentials/tree/master</RepositoryUrl>
<GeneratePackageOnBuild>false</GeneratePackageOnBuild>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\XbimOpenSourceKeyFile.snk</AssemblyOriginatorKeyFile>
<DelaySign>false</DelaySign>
Expand Down
4 changes: 2 additions & 2 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ pool:

variables:
buildConfiguration: 'Release'
major: 5
minor: 9
major: 6
minor: 0
# creates a counter called versioncounter and seeds it at 100 and then assigns the value to a variable named buildNo.
buildNo: $[counter('versioncounter', 100)]

Expand Down