Skip to content

Commit

Permalink
prepare release 4.0.0-beta.1
Browse files Browse the repository at this point in the history
  • Loading branch information
OsirisTerje committed Oct 8, 2023
1 parent 3630a95 commit 23c8411
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
5 changes: 5 additions & 0 deletions CHANGES.md
@@ -1,3 +1,8 @@
## NUnit 4.0.0-beta.1 - October 8, 2023

This release is the first beta release of NUnit 4.0.
All changes, see [release notes](https://docs.nunit.org/articles/nunit/release-notes/framework.html#nunit-400-beta1---tba)

## NUnit 3.13.2 - April 27, 2021

This release fixes a new issue with the `FixtureLifeCycle` attribute where `IDisposable` test fixtures were not being disposed properly. As always, [@gleb-osokin](https://github.com/gleb-osokin) has been a great help with this new feature.
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.txt
@@ -1,4 +1,4 @@
Copyright (c) 2021 Charlie Poole, Rob Prouse
Copyright (c) 2023 Charlie Poole, Rob Prouse

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
5 changes: 2 additions & 3 deletions README.md
@@ -1,4 +1,4 @@
# NUnit 3 Framework #
# NUnit 4 Framework #

[![AppVeyor Build status](https://ci.appveyor.com/api/projects/status/3xfkxtnkrts1x06q/branch/master?svg=true)](https://ci.appveyor.com/project/CharliePoole/nunit/branch/master) [![Github Actions Build Status](https://github.com/nunit/nunit/actions/workflows/continuous_integration.yml/badge.svg?branch=master&event=push)](https://github.com/nunit/nunit/actions/workflows/continuous_integration.yml) [![NuGet Version and Downloads count](https://buildstats.info/nuget/NUnit)](https://www.nuget.org/packages/NUnit)

Expand Down Expand Up @@ -37,7 +37,7 @@ Earlier versions of NUnit were developed by Charlie Poole, James W. Newkirk, Ale

## License ##

NUnit is Open Source software and NUnit 3 is released under the [MIT license](https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt). Earlier releases used the [NUnit license](https://nunit.org/nuget/license.html). Both of these licenses allow the use of NUnit in free and commercial applications and libraries without restrictions.
NUnit is Open Source software and NUnit 4 is released under the [MIT license](https://raw.githubusercontent.com/nunit/nunit/master/LICENSE.txt). Earlier releases used the [NUnit license](https://nunit.org/nuget/license.html). Both of these licenses allow the use of NUnit in free and commercial applications and libraries without restrictions.

## NUnit Projects ##

Expand Down Expand Up @@ -68,4 +68,3 @@ NUnit is made up of several projects. When reporting issues, please try to repor
- [NUnit 2 Result Writer](https://github.com/nunit/nunit-v2-result-writer) - Writes test results in the legacy NUnit 2 format
- [Visual Studio Project Loader](https://github.com/nunit/vs-project-loader) - Loads and parses Visual Studio projects and solutions
- [NUnit Project Loader](https://github.com/nunit/nunit-project-loader) - Loads NUnit projects
- [TeamCity Event Listener](https://github.com/nunit/teamcity-event-listener) - Allows you to run and integrate NUnit tests into TeamCity
2 changes: 1 addition & 1 deletion build.cake
Expand Up @@ -18,7 +18,7 @@ var ErrorDetail = new List<string>();
//////////////////////////////////////////////////////////////////////

var version = "4.0.0";
var modifier = "-alpha-1";
var modifier = "-beta.1";

var dbgSuffix = configuration == "Debug" ? "-dbg" : "";
var packageVersion = version + modifier + dbgSuffix;
Expand Down

0 comments on commit 23c8411

Please sign in to comment.