Skip to content

Commit

Permalink
Merge pull request #191 from gaelj/release
Browse files Browse the repository at this point in the history
πŸ”– Release 0.8.11
  • Loading branch information
gaelj authored Oct 22, 2024
2 parents 73cf55e + e47c628 commit 4d0f6ed
Show file tree
Hide file tree
Showing 8 changed files with 36 additions and 5 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,24 @@

## 0.8.11 - 2024-10-22

### βͺ Revert changes

- Remove code comments

### ✨ Introduce new features

- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)

### πŸ› Fix a bug

- Fix versioning

### πŸ“ Add or update documentation

- Update changelog for 0.8.11

## 0.8.11 - 2024-10-22

### ✨ Introduce new features

- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)
Expand Down
2 changes: 1 addition & 1 deletion CodeMirror6/CodeMirror6.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AssemblyName>GaelJ.BlazorCodeMirror6</AssemblyName>
<IsPackable>true</IsPackable>
<PackageId>GaelJ.BlazorCodeMirror6</PackageId>
<Version>0.8.10</Version>
<Version>0.8.11</Version>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand Down
2 changes: 1 addition & 1 deletion Examples.BlazorServer/Examples.BlazorServer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<ImplicitUsings>enable</ImplicitUsings>
<Version>0.8.10</Version>
<Version>0.8.11</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.8.10</Version>
<Version>0.8.11</Version>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Sentry.AspNetCore" Version="4.12.0" />
Expand Down
2 changes: 1 addition & 1 deletion Examples.BlazorWasm/Examples.BlazorWasm.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<IsPackable>false</IsPackable>
<Version>0.8.10</Version>
<Version>0.8.11</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser-wasm" />
Expand Down
2 changes: 1 addition & 1 deletion Examples.Common/Examples.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<Version>0.8.10</Version>
<Version>0.8.11</Version>
</PropertyGroup>
<ItemGroup>
<SupportedPlatform Include="browser" />
Expand Down
12 changes: 12 additions & 0 deletions NEW_CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
### βͺ Revert changes

- Remove code comments

### ✨ Introduce new features

- Add InitializeAsync method to allow forced re-init if needed (Issue rendering after the first time #187)

### πŸ› Fix a bug

- Fix versioning

### πŸ“ Add or update documentation

- Update changelog for 0.8.11
1 change: 1 addition & 0 deletions make-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,7 @@ git add ./*CHANGELOG.md
git commit -m "πŸ“ Update changelog for $new_version"

# Bump version in all .csproj files
dotnet tool restore
dotnet setversion -r "$new_version"
git add ./**/*.csproj
git commit -m "πŸ”– Bump version to $new_version"

0 comments on commit 4d0f6ed

Please sign in to comment.