Skip to content

Commit 74f2aab

Browse files
Discovered that the wrong binaries were released
1 parent fc3b5f1 commit 74f2aab

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
66

77
## [Unreleased]
88

9+
## [1.2.1-alpha] - 2019-02-27
10+
## Fixed
11+
- Wrong binaries released with 1.2.0-alpha.
12+
913
## [1.2.0-alpha] - 2019-02-27
1014
### Added
1115
- [#30](https://github.com/robert-j-engdahl/ngettext-wpf/issues/30)`GettextFormatConverter` XAML extension.

NGettext.Wpf/NGettext.Wpf.nuspec

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>NGettext.Wpf</id>
5-
<version>1.2.0-alpha</version>
5+
<version>1.2.1-alpha</version>
66
<title>WPF support for NGettext</title>
77
<authors>Robert Jørgensgaard Engdahl</authors>
88
<owners>Robert Jørgensgaard Engdahl</owners>
@@ -18,7 +18,6 @@
1818
</dependencies>
1919
</metadata>
2020
<files>
21-
<file src="bin/$configuration$/NGettext.Wpf.dll" target="lib/net45" />
2221
<file src="../XGetText.Xaml/XGetText-Xaml.ps1" target="tools" />
2322
<file src="../XGetText.Xaml/Init.ps1" target="tools" />
2423
</files>

NGettext.Wpf/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
1212
[assembly: AssemblyProduct("NGettext.Wpf")]
13-
[assembly: AssemblyCopyright("Copyright © 2017, 2018")]
13+
[assembly: AssemblyCopyright("Copyright © 2017, 2018, 2019")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -32,5 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.0.21.0")]
36-
[assembly: AssemblyFileVersion("1.0.0.0")]
35+
[assembly: AssemblyVersion("1.2.1.0")]
36+
[assembly: AssemblyFileVersion("1.2.1.0")]

NGettext.Wpf/Releasing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
- Update the `.nuspec` file with a new version number.
55
- Build in release mode
6-
- Invoke `PM> nuget pack`; no options needed.
6+
- Invoke `PM> nuget pack`; no options needed. But it will release the debug version, so make sure your build configuration match!
77
- Sign the created package, for example by
88
```
99
PM> nuget sign .\NGettext.Wpf.1.1.0-alpha.nupkg

0 commit comments

Comments
 (0)