Skip to content

Commit

Permalink
chore(package): upgrade version to 3.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
GiuseppePiscopo committed Mar 1, 2017
1 parent f0c8f8f commit 9e50ecb
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 6 deletions.
15 changes: 15 additions & 0 deletions BREAKING-CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Breaking Changes

## 3.0.0

### Assertions

Assertions have been moved from `NSpec` namespace to `NSpec.Assertions`.

#### Reason

When client test code is also using Shouldly, NSpec assertions go in conflict
with those from `Shouldly` namespace.

#### Workaround

Everywhere NSpec assertions are used, add a `using NSpec.Assertions;` directive.

## 2.0.0

### .NET Framework 4.5
Expand Down
2 changes: 1 addition & 1 deletion sln/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("2.0.0")]
[assembly: AssemblyVersion("3.0.0")]

// AssemblyFileVersion not explicitly specified, so it will be same as AssemblyVersion
2 changes: 1 addition & 1 deletion sln/src/NSpec/NSpec.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package>
<metadata>
<id>NSpec</id>
<version>2.0.1.0</version>
<version>3.0.0.0</version>
<title>NSpec</title>
<summary>NSpec is a testing framework for .NET. NSpec is heavily inspired by RSpec and Mocha.</summary>
<description>NSpec is a BDD-style testing framework for .NET. NSpec is intended to drive development by specifying behavior within a context or scenario. NSpec belongs to the xSpec (Context/Specification) family and is heavily inspired by RSpec and Mocha.</description>
Expand Down
2 changes: 1 addition & 1 deletion sln/src/NSpec/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "2.0.1.0",
"version": "3.0.0.0",

"buildOptions": {
"compile": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@
"testRunner": "nspec",

"dependencies": {
"dotnet-test-nspec": "0.1.1-dev-71",
"dotnet-test-nspec": "0.2.0",
"LibraryUnderTest": {
"target": "project"
},
"NSpec": "2.0.1-dev-71",
"NSpec": "3.0.0",
"Shouldly": "2.8.2"
},

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="NSpec" version="2.0.1" targetFramework="net451" />
<package id="NSpec" version="3.0.0" targetFramework="net451" />
<package id="Shouldly" version="2.8.2" targetFramework="net451" />
</packages>

0 comments on commit 9e50ecb

Please sign in to comment.