Skip to content

Commit

Permalink
New version and changes documentation.
Browse files Browse the repository at this point in the history
  • Loading branch information
wachulski committed Jan 16, 2018
1 parent 55cf22b commit a968293
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) with a modification that takes CI/CD to
the extreme point. This project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

* [0.9.0] [2018-01-16] [Added] Result to ExpectedResult argument analyzer+fixer and Ignore reason analyzer+fixer.
Fixed code formatting for existing code fixers.
* [0.8.0] [2018-01-11] [Added] Deprecated attributes replacing.
* [0.7.0] [2018-01-10] [Added] MTAThread and STAThread attributes analyzer.
* [0.6.0] [2018-01-09] [Added] No longer supported attributes analyzer.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,17 +31,17 @@ For vast majority of breaking changes introduced by v3 of the framework this uti
| Name | Notes | :mag: | :bulb: |
|------------------------------|-------------------------------------------------------|----------|------------|
| ExpectedExceptionAttribute | No longer supported. Use `Assert.Throws` or `Assert.That`. | :white_check_mark: | :white_check_mark: |
| IgnoreAttribute | The reason is now mandatory | :soon: | :x: |
| IgnoreAttribute | The reason is now mandatory | :white_check_mark: | :white_check_mark: |
| RequiredAddinAttribute | No longer supported. | :white_check_mark: | :x: |
| RequiresMTAAttribute | Deprecated. Use `ApartmentAttribute` | :white_check_mark: | :white_check_mark: |
| RequiresSTAAttribute | Deprecated. Use `ApartmentAttribute` | :white_check_mark: | :white_check_mark: |
| SuiteAttribute | No longer supported. | :white_check_mark: | :x: |
| System.MTAThreadAttribute | No longer treated as `RequiresMTAAttribute` | :white_check_mark: | :x: |
| System.STAThreadAttribute | No longer treated as `RequiresSTAAttribute` | :white_check_mark: | :x: |
| TearDown and OneTimeTearDown | There is a change to the logic by which teardown methods are called. | :soon: | :x: |
| TestCaseAttribute | Named parameter `Result=` is no longer supported. Use `ExpectedResult=`. Named parameter `Ignore=` now takes a string, giving the reason for ignoring the test.| :soon: | :soon: |
| TestCaseAttribute | Named parameter `Result=` is no longer supported. Use `ExpectedResult=`. Named parameter `Ignore=` now takes a string, giving the reason for ignoring the test.| :white_check_mark: | :white_check_mark: |
| TestCaseSourceAttribute | The attribute forms using a string argument to refer to the data source must now use only static fields, properties or methods. | :white_check_mark: | :x: |
| TestFixtureAttribute | Named parameter `Ignore=` now takes a string, giving the reason for ignoring the test. | :soon: | :x: |
| TestFixtureAttribute | Named parameter `Ignore=` now takes a string, giving the reason for ignoring the test. | :white_check_mark: | :white_check_mark: |
| TestFixtureSetUpAttribute | Deprecated. Use `OneTimeSetUpAttribute`. | :white_check_mark: | :white_check_mark: |
| TestFixtureTearDownAttribute | Deprecated. Use `OneTimeTearDownAttribute`. | :white_check_mark: | :white_check_mark: |
| ValueSourceAttribute | The source name of the data source must now use only static fields, properties or methods. | :white_check_mark: | :x: |
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
version: 0.8.0.{build}
version: 0.9.0.{build}
image: Visual Studio 2017
branches:
only:
Expand Down

0 comments on commit a968293

Please sign in to comment.