Skip to content

Commit 4f00f8c

Browse files
committed
Merge branch 'release/1.0.0' into develop
2 parents 22ab672 + 681d01b commit 4f00f8c

File tree

5 files changed

+24
-6
lines changed

5 files changed

+24
-6
lines changed

CHANGELOG.md

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,24 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

88
## [Unreleased]
99

10+
## [1.0.0] - 2025-08-03
11+
12+
### Changed
13+
14+
- Massive simplification by using Datacute.IncrementalGeneratorExtensions
15+
- Changed to use a builder style pattern for the pipeline Combines.
16+
- Replaced Numerous Attribute "Include x" Properties with a single flags enum.
17+
- Generate flags enum and attribute rather than including them in the package. (This results in more consistent package treatment as a source generator.)
18+
19+
### Added
20+
21+
- More docs
22+
1023
## [0.0.2-alpha] - 2025-07-12
1124

1225
### Fixed
@@ -58,5 +71,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
5871
- MetadataReferencesProvider's MetadataReference details
5972
- Diagnostic log of the source generation process and timing included.
6073

61-
[Unreleased]: https://github.com/datacute/SourceGeneratorContext/compare/0.0.1-alpha...develop
62-
[0.0.1-alpha]: https://github.com/datacute/SourceGeneratorContext/releases/0.0.1-alpha
74+
[Unreleased]: https://github.com/datacute/SourceGeneratorContext/compare/1.0.0...develop
75+
[1.0.0]: https://github.com/datacute/SourceGeneratorContext/releases/tag/1.0.0
76+
[0.0.2-alpha]: https://github.com/datacute/SourceGeneratorContext/releases/tag/0.0.2-alpha
77+
[0.0.1-alpha]: https://github.com/datacute/SourceGeneratorContext/releases/tag/0.0.1-alpha

SourceGeneratorContext.sln

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1414
LICENSE = LICENSE
1515
version.props = version.props
1616
global.json = global.json
17+
versionsuffix.ci.props = versionsuffix.ci.props
18+
versionsuffix.local.props = versionsuffix.local.props
19+
versionsuffix.release.props = versionsuffix.release.props
1720
EndProjectSection
1821
EndProject
1922
Global

version.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>0.0.2</VersionPrefix>
3+
<VersionPrefix>1.0.0</VersionPrefix>
44
</PropertyGroup>
55

66
<PropertyGroup>

versionsuffix.local.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)' != 'true'">
33
<VersionSuffix>dev-$([System.DateTime]::UtcNow.ToString("yyyyMMdd-HHmmss"))</VersionSuffix>
44
</PropertyGroup>
5-
<!-- Visial Studio repeatedly refreshes nuget packages if a timestamp is used -->
5+
<!-- Visual Studio repeatedly refreshes nuget packages if a timestamp is used -->
66
<PropertyGroup Condition="'$(BuildingInsideVisualStudio)' == 'true'">
77
<VersionSuffix>dev</VersionSuffix>
88
</PropertyGroup>

versionsuffix.release.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionSuffix>alpha</VersionSuffix>
3+
<!-- <VersionSuffix>alpha</VersionSuffix>-->
44
</PropertyGroup>
55
</Project>

0 commit comments

Comments
 (0)