Skip to content

Commit

Permalink
Merge pull request #716 from adamralph/release-notes-link
Browse files Browse the repository at this point in the history
add link to release notes in nuspec
  • Loading branch information
blairconrad committed May 21, 2016
2 parents de1fe53 + b40bb03 commit 1bdb246
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 7 deletions.
1 change: 0 additions & 1 deletion FakeItEasy.sln
Expand Up @@ -25,7 +25,6 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{59466C4D-C407-4DD9-B77B-D99162B9FC7C}"
ProjectSection(SolutionItems) = preProject
src\CommonAssemblyInfo.cs = src\CommonAssemblyInfo.cs
src\FakeItEasy.nuspec = src\FakeItEasy.nuspec
src\ILMerge.Internalize.Exclude.txt = src\ILMerge.Internalize.Exclude.txt
EndProjectSection
EndProject
Expand Down
7 changes: 3 additions & 4 deletions rakefile.rb
Expand Up @@ -13,7 +13,7 @@
assembly_info = "src/CommonAssemblyInfo.cs"
version = IO.read(assembly_info)[/AssemblyInformationalVersion\("([^"]+)"\)/, 1]
version_suffix = ENV["VERSION_SUFFIX"]
nuspec = "src/FakeItEasy.nuspec"
nuspec = "src/FakeItEasy/FakeItEasy.nuspec"
analyzer_nuspec = "src/FakeItEasy.Analyzer/FakeItEasy.Analyzer.nuspec"
logs = "artifacts/logs"
output = "artifacts/output"
Expand Down Expand Up @@ -43,12 +43,11 @@
to appropriate "-beta123" or "" (for non-betas) value and initiate a build
- [ ] check build
- edit draft release in [GitHub UI](https://github.com/FakeItEasy/FakeItEasy/releases):
- [ ] complete release notes, mentioning non-owner contributors, if any
- [ ] complete release notes, mentioning non-owner contributors, if any (move release notes forward from any pre-releases to the current release)
- [ ] attach nupkg
- [ ] publish the release
- [ ] push NuGet package
- [ ] copy release notes from GitHub to NuGet
- [ ] de-list pre-release or superseded buggy NuGet packages if present (copy any release notes forward to the new version)
- [ ] de-list pre-release or superseded buggy NuGet packages if present
- [ ] update website with contributors list (if in place)
- [ ] tweet, mentioning contributors and post link as comment here for easy retweeting ;-)
- [ ] post tweet in [Gitter](https://gitter.im/FakeItEasy/FakeItEasy)
Expand Down
1 change: 1 addition & 0 deletions src/FakeItEasy.Analyzer/FakeItEasy.Analyzer.nuspec
Expand Up @@ -6,6 +6,7 @@
<title>FakeItEasy.Analyzer</title>
<authors>Thomas Levesque, FakeItEasy contributors</authors>
<description>Provides diagnostic analyzers to warn about incorrect usage of FakeItEasy. Works in Visual Studio 2015 Update 1 or later.</description>
<releaseNotes>https://github.com/FakeItEasy/FakeItEasy/releases</releaseNotes>
<language>en-US</language>
<projectUrl>http://fakeiteasy.github.io/</projectUrl>
<iconUrl>http://fakeiteasy.github.io/img/fakeiteasy_logo_256_square_white.png</iconUrl>
Expand Down
1 change: 1 addition & 0 deletions src/FakeItEasy/FakeItEasy.csproj
Expand Up @@ -483,6 +483,7 @@
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<None Include="FakeItEasy.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<ItemGroup>
Expand Down
5 changes: 3 additions & 2 deletions src/FakeItEasy.nuspec → src/FakeItEasy/FakeItEasy.nuspec
Expand Up @@ -6,6 +6,7 @@
<title>FakeItEasy - Mocking made faking easy!</title>
<authors>Patrik Hägne, FakeItEasy contributors</authors>
<description>It's faking amazing! The easy mocking framework for .NET that works great in C# and VB.NET alike. No need to know the difference between a stub, a mock or a spy, everything's a fake! The easy to use, refactoring friendly API makes faking a breeze.</description>
<releaseNotes>https://github.com/FakeItEasy/FakeItEasy/releases</releaseNotes>
<language>en-US</language>
<projectUrl>http://fakeiteasy.github.io/</projectUrl>
<iconUrl>http://fakeiteasy.github.io/img/fakeiteasy_logo_256_square_white.png</iconUrl>
Expand All @@ -14,7 +15,7 @@
<tags>TDD unittesting mocks mocking fakes faking stubs stubbing spy spies doubles isolation substitutes substitution</tags>
</metadata>
<files>
<file src="FakeItEasy\Bin\Release\FakeItEasy.dll" target="lib\net40" />
<file src="FakeItEasy\Bin\Release\FakeItEasy.xml" target="lib\net40" />
<file src="Bin\Release\FakeItEasy.dll" target="lib\net40" />
<file src="Bin\Release\FakeItEasy.xml" target="lib\net40" />
</files>
</package>

0 comments on commit 1bdb246

Please sign in to comment.