Skip to content

Commit

Permalink
Bump version to v0.11.0
Browse files Browse the repository at this point in the history
  • Loading branch information
nickbabcock committed Aug 16, 2022
1 parent 7c4c740 commit 8c81818
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Since Pfim emphasizes on being frontend and backend agnostic some work is entail
Below is a snippet that will convert a 32bit rgba targa or direct draw surface image into a png using the .NET framework.

```csharp
using (var image = Pfim.FromFile(path))
using (var image = Pfimage.FromFile(path))
{
PixelFormat format;

Expand Down
18 changes: 18 additions & 0 deletions RELEASE_NOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,21 @@
### 0.11.0 - August 16th 2022

**Breaking Changes**

The `Pfim` class has been renamed to `Pfimage` to avoid namespace collision. Migration should be simple:

```diff
- using (var image = Pfim.FromFile(file))
+ using (var image = Pfimage.FromFile(file))
```

**Other Changes**

- Fix rounding errors in DXT1, DXT3, and DXT5 where the decoded channels may be inaccurate within a few degrees. See PR #98 and issue #88 for more info
- Fix image decoding on smaller buffers and chunked streams
- Pfim is now a strong named assembly
- Code samples updated to use NET 6.0

### 0.10.3 - January 1st 2022

- Add support for B5G5R5A1_UNORM encoded DDS images
Expand Down
4 changes: 2 additions & 2 deletions src/Pfim/Pfim.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<SignAssembly>true</SignAssembly>

<Major>0</Major>
<Minor>10</Minor>
<Revision>3</Revision>
<Minor>11</Minor>
<Revision>0</Revision>
<AssemblyVersion>$(Major).$(Minor).$(Revision)</AssemblyVersion>
<AssemblyFileVersion>$(Major).$(Minor).$(Revision)</AssemblyFileVersion>
<InformationalVersion>$(Major).$(Minor).$(Revision)</InformationalVersion>
Expand Down

0 comments on commit 8c81818

Please sign in to comment.