Skip to content

Commit

Permalink
Merge pull request #2 from thiagomvas/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
thiagomvas authored Jul 5, 2024
2 parents a465459 + 540278b commit 824f4b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [versionize](https://github.com/versionize/versionize) for commit guidelines.

<a name="1.2.1"></a>
## [1.2.1](https://www.github.com/thiagomvas/SharpTables/releases/tag/v1.2.1) (2024-07-05)

### Bug Fixes

* Cell.Position now is cloned properly ([4970ea8](https://www.github.com/thiagomvas/SharpTables/commit/4970ea8bd65c975afaa04baa3a8f991a457351c9))

<a name="1.2.0"></a>
## [1.2.0](https://www.github.com/thiagomvas/SharpTables/releases/tag/v1.2.0) (2024-07-04)

Expand Down
1 change: 1 addition & 0 deletions SharpTables/Cell.cs
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ internal Cell Clone()
cell.Padding = Padding;
cell.Alignment = Alignment;
cell.type = type;
cell.Position = Position;
return cell;
}

Expand Down
2 changes: 1 addition & 1 deletion SharpTables/SharpTables.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<Version>1.2.0</Version>
<Version>1.2.1</Version>
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
<Title>SharpTables</Title>
<RepositoryUrl>https://github.com/thiagomvas/SharpTables</RepositoryUrl>
Expand Down

0 comments on commit 824f4b4

Please sign in to comment.