Skip to content

Commit 8c81818

Browse files
committed
Bump version to v0.11.0
1 parent 7c4c740 commit 8c81818

File tree

3 files changed

+21
-3
lines changed

3 files changed

+21
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Since Pfim emphasizes on being frontend and backend agnostic some work is entail
3434
Below is a snippet that will convert a 32bit rgba targa or direct draw surface image into a png using the .NET framework.
3535

3636
```csharp
37-
using (var image = Pfim.FromFile(path))
37+
using (var image = Pfimage.FromFile(path))
3838
{
3939
PixelFormat format;
4040

RELEASE_NOTES.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
### 0.11.0 - August 16th 2022
2+
3+
**Breaking Changes**
4+
5+
The `Pfim` class has been renamed to `Pfimage` to avoid namespace collision. Migration should be simple:
6+
7+
```diff
8+
- using (var image = Pfim.FromFile(file))
9+
+ using (var image = Pfimage.FromFile(file))
10+
```
11+
12+
**Other Changes**
13+
14+
- 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
15+
- Fix image decoding on smaller buffers and chunked streams
16+
- Pfim is now a strong named assembly
17+
- Code samples updated to use NET 6.0
18+
119
### 0.10.3 - January 1st 2022
220

321
- Add support for B5G5R5A1_UNORM encoded DDS images

src/Pfim/Pfim.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
<SignAssembly>true</SignAssembly>
2020

2121
<Major>0</Major>
22-
<Minor>10</Minor>
23-
<Revision>3</Revision>
22+
<Minor>11</Minor>
23+
<Revision>0</Revision>
2424
<AssemblyVersion>$(Major).$(Minor).$(Revision)</AssemblyVersion>
2525
<AssemblyFileVersion>$(Major).$(Minor).$(Revision)</AssemblyFileVersion>
2626
<InformationalVersion>$(Major).$(Minor).$(Revision)</InformationalVersion>

0 commit comments

Comments
 (0)