Skip to content
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ The format is based on Keep a Changelog.

## [Unreleased]

## [1.0.1] - 2026-05-07

### Changed

- `Esolang.Funge.Generator`, `Esolang.Funge.Parser`, `Esolang.Funge.Processor`: package metadata now includes `PackageReadmeFile` and packs each project `README.md`.
- Build/package baseline: incremented `AssemblyVersion` / `FileVersion` to `1.0.1.2` and `Version` to `1.0.1`.

## [1.0.0] - 2026-05-06

### Added
Expand Down
6 changes: 3 additions & 3 deletions Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<LangVersion>14</LangVersion>
<AssemblyVersion>1.0.0.1</AssemblyVersion>
<FileVersion>1.0.0.1</FileVersion>
<Version>1.0.0</Version>
<AssemblyVersion>1.0.1.2</AssemblyVersion>
<FileVersion>1.0.1.2</FileVersion>
<Version>1.0.1</Version>
<PackageProjectUrl>https://github.com/Esolang-NET/Funge/</PackageProjectUrl>
<RepositoryUrl>https://github.com/Esolang-NET/Funge.git</RepositoryUrl>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 2 additions & 0 deletions Generator/Esolang.Funge.Generator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<PackageId>Esolang.Funge.Generator</PackageId>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<DevelopmentDependency>true</DevelopmentDependency>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<ItemGroup>
Expand All @@ -22,6 +23,7 @@
<None Include="../CHANGELOG.md" Pack="true" PackagePath="\" />
<None Include="../LICENSE" Pack="true" PackagePath="\" />
<None Include="buildTransitive\Esolang.Funge.Generator.targets" Pack="true" PackagePath="buildTransitive\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 2 additions & 0 deletions Parser/Esolang.Funge.Parser.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Core parsing primitives for Funge-98 programs.</Description>
<PackageId>Esolang.Funge.Parser</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">
Expand All @@ -26,5 +27,6 @@
<ItemGroup>
<None Include="../CHANGELOG.md" Pack="true" PackagePath="\" />
<None Include="../LICENSE" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
2 changes: 2 additions & 0 deletions Processor/Esolang.Funge.Processor.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<Description>Execution engine for Funge-98 programs.</Description>
<PackageId>Esolang.Funge.Processor</PackageId>
<PackageReadmeFile>README.md</PackageReadmeFile>
</PropertyGroup>

<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net6.0'))">
Expand All @@ -30,5 +31,6 @@
<ItemGroup>
<None Include="../CHANGELOG.md" Pack="true" PackagePath="\" />
<None Include="../LICENSE" Pack="true" PackagePath="\" />
<None Include="README.md" Pack="true" PackagePath="\" />
</ItemGroup>
</Project>
Loading