Skip to content

Commit

Permalink
increased version to 1.5
Browse files Browse the repository at this point in the history
CI: ZIP and NuGet package artifacts
  • Loading branch information
thoemmi committed Mar 28, 2016
1 parent e0214a0 commit 613b7cc
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 4 deletions.
12 changes: 9 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
### Next Release
### 1.5 (3/28/2016)

**Misc**

* [#9](https://github.com/dblock/resourcelib/pull/9): Added a strong signature to the .NET assembly - [@dwmkerr](https://github.com/dwmkerr).
* [#10](https://github.com/dblock/resourcelib/issues/10): Fixed System.OverflowException: Arithmetic operation resulted in an overflow (64-bit systems) by replacing most calls to ToInt32 with ToInt64 - [@icnocop](https://github.com/icnocop).
* [#16](https://github.com/dblock/resourcelib/issues/16): Fixed NuGet error "Package restore is disabled by default." when building by updating to NuGet 2.8.1 - [@icnocop](https://github.com/icnocop).
* Including Vestris.ResourceLib.pdb and Vestris.ResourceLib.xml in release zip for documentation and easier debugging support - [@icnocop](https://github.com/icnocop).
* [CI](https://ci.appveyor.com/project/dblock/resourcelib): Setup CI on AppVeyor - [@dblock](https://github.com/dblock).
* [#32](https://github.com/dblock/resourcelib/pull/32): Creation of NuGet package - [@thoemmi](https://github.com/thoemmi).

**Bugs**

* [#10](https://github.com/dblock/resourcelib/issues/10): Fixed System.OverflowException: Arithmetic operation resulted in an overflow (64-bit systems) by replacing most calls to `ToInt32` with `ToInt64` - [@icnocop](https://github.com/icnocop).
* [#16](https://github.com/dblock/resourcelib/issues/16): Fixed NuGet error "Package restore is disabled by default." when building by updating to NuGet 2.8.1 - [@icnocop](https://github.com/icnocop).
* [#26](https://github.com/dblock/resourcelib/pull/26): Fixed opening PE files at non-ANSI paths by changing from ANSI to Wide version of PInvoke - [@hypersw](https://github.com/hypersw).
* [#31](https://github.com/dblock/resourcelib/pull/31): Fixed OverflowException when running as x64 - [@thoemmi](https://github.com/thoemmi).

Expand Down
2 changes: 1 addition & 1 deletion ResourceLib.proj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<Copyright>Copyright (c) Vestris Inc.</Copyright>
<Trademark>All Rights Reserved</Trademark>
<MajorVersion>1</MajorVersion>
<MinorVersion>4</MinorVersion>
<MinorVersion>5</MinorVersion>
<RevisionVersion>0</RevisionVersion>
</PropertyGroup>
<Target Name="all" DependsOnTargets="configurations">
Expand Down
7 changes: 7 additions & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@ version: 0.{build}

build_script:
- build all /p:Configuration=Release

artifacts:
- path: target\Release\*.zip
name: ZIP

- path: target\Release\*.nupkg
name: NuGet package

0 comments on commit 613b7cc

Please sign in to comment.