Skip to content

Commit f2a0de0

Browse files
committed
Merge branch 'release/1.0.0'
2 parents 2bee26a + d15ddf4 commit f2a0de0

File tree

7 files changed

+46
-12
lines changed

7 files changed

+46
-12
lines changed

CHANGELOG.md

Lines changed: 25 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,45 @@
11
Changelog
22
---
33

4-
## v0.0.1-alpha.6 (2024-??-??)
4+
## v1.0.0
5+
Release Date: 2024-10-28
6+
7+
### Features
8+
9+
* First stable release
10+
11+
## v0.0.1-alpha.6b
12+
Release Date: 2024-09-24
13+
14+
### Fixes
15+
* Corrected the published package (but the new version broke the doc links)
16+
17+
## v0.0.1-alpha.6
18+
Release Date: 2024-09-24
519

620
### Features
721

822
* Removed windows specific paths from tests
923
* More documentation
1024

11-
## v0.0.1-alpha.5 (2024-09-22)
25+
## v0.0.1-alpha.5
26+
Release Date: 2024-09-22
1227

1328
### Fixes
1429

1530
* Included doc-comments of the EmbeddedResourceProperties attribute in the package
1631

17-
## v0.0.1-alpha.4 (2024-09-15)
32+
## v0.0.1-alpha.4
33+
Release Date: 2024-09-15
1834

1935
### Features
2036

2137
* Moved the attribute to its own dll
2238
* Include Read method in each class
2339
* The Read method, backing fields, and resource names are available to the class
2440

25-
## v0.0.1-alpha.3 (2024-09-14)
41+
## v0.0.1-alpha.3
42+
Release Date: 2024-09-14
2643

2744
### Features
2845

@@ -32,14 +49,16 @@ Changelog
3249

3350
* Removing doc duplication
3451

35-
## v0.0.1-alpha.2 (2024-09-13)
52+
## v0.0.1-alpha.2
53+
Release Date: 2024-09-13
3654

3755
### Features
3856

3957
* Add `[Conditional]` attribute to restrict inclusion of the usage of
4058
the `EmbeddedResourcePropertiesAttribute` in the output.
4159

42-
## v0.0.1-alpha (2024-09-09)
60+
## v0.0.1-alpha
61+
Release Date: 2024-09-09
4362

4463
### Features
4564

Directory.Build.props

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<PropertyGroup>
66
<Authors>Stephen Denne</Authors>
77
<Copyright>Copyright © Stephen Denne 2024</Copyright>
8+
<Company>Datacute</Company>
9+
<PackageProjectUrl>https://github.com/datacute/EmbeddedResourcePropertyGenerator</PackageProjectUrl>
810
<CheckEolTargetFramework>false</CheckEolTargetFramework>
911
</PropertyGroup>
1012

EmbeddedResourcePropertyGenerator.Attributes/EmbeddedResourcePropertiesAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ namespace Datacute.EmbeddedResourcePropertyGenerator;
3939
/// <para>
4040
/// If the partial methods are not implemented, the code effectively reduces to:
4141
/// <code>
42-
/// public static string Example =>
42+
/// public static string Example =&gt;
4343
/// EmbeddedResource.BackingField.Example ??= EmbeddedResource.Read(EmbeddedResource.ResourceName.Example);
4444
/// </code>
4545
/// </para>

EmbeddedResourcePropertyGenerator.Attributes/EmbeddedResourcePropertyGenerator.Attributes.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
<AssemblyName>Datacute.EmbeddedResourcePropertyGenerator.Attributes</AssemblyName>
77
<RootNamespace>Datacute.EmbeddedResourcePropertyGenerator</RootNamespace>
88
<Nullable>enable</Nullable>
9-
<Company>Datacute</Company>
109
<AssemblyVersion>1.0.0</AssemblyVersion>
1110
</PropertyGroup>
1211

EmbeddedResourcePropertyGenerator/EmbeddedResourcePropertyGenerator.csproj

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,11 @@
2121
<PropertyGroup>
2222
<PackageId>Datacute.EmbeddedResourcePropertyGenerator</PackageId>
2323
<Title>Datacute Embedded Resource Property Generator</Title>
24-
<Company>Datacute</Company>
2524
<Description>A source generator creating properties for embedded resources in a project.</Description>
2625
<PackageTags>SourceGenerator</PackageTags>
2726
<PackageReadmeFile>README.md</PackageReadmeFile>
2827
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
2928
<PackageLicenseExpression>MIT</PackageLicenseExpression>
30-
<PackageProjectUrl>https://github.com/datacute/EmbeddedResourcePropertyGenerator</PackageProjectUrl>
3129
</PropertyGroup>
3230

3331
<ItemGroup>

releasenotes.props

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
<Project>
22
<PropertyGroup>
3+
<PackageReleaseNotes Condition="'$(PackageVersion)' == '1.0.0'">
4+
<![CDATA[
5+
6+
Features
7+
- First stable release
8+
9+
]]>
10+
</PackageReleaseNotes>
11+
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.6b'">
12+
<![CDATA[
13+
14+
Fixes
15+
16+
- Corrected the published package (but the new version broke the doc links)
17+
18+
]]>
19+
</PackageReleaseNotes>
320
<PackageReleaseNotes Condition="'$(PackageVersion)' == '0.0.1-alpha.6'">
421
<![CDATA[
522

version.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
<Project>
22
<PropertyGroup>
3-
<VersionPrefix>0.0.1</VersionPrefix>
4-
<VersionSuffix>alpha.6</VersionSuffix>
3+
<VersionPrefix>1.0.0</VersionPrefix>
54
<PackageVersion Condition="'$(VersionSuffix)' == ''">$(VersionPrefix)</PackageVersion>
65
<PackageVersion Condition="'$(VersionSuffix)' != ''">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
76
</PropertyGroup>

0 commit comments

Comments
 (0)