Skip to content

Commit d0980fe

Browse files
authored
Merge pull request #143 from unittest-cpp/v2-prep
v2.0.0 prep Closes #96
2 parents 5e3b378 + 615b6cd commit d0980fe

File tree

5 files changed

+17
-5
lines changed

5 files changed

+17
-5
lines changed

ChangeLog

Whitespace-only changes.

INSTALL

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2+
Preamble: If you are installing UnitTest++ from source, or from a
3+
release prior to 1.6.1, you will need to have autotools installed and
4+
run `autoreconf -i; autoconf` prior to following the standard
5+
instructions below.
6+
17
Installation Instructions
28
*************************
39

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,17 @@ Via svn:
3030

3131
svn checkout https://github.com/unittest-cpp/unittest-cpp/trunk unittest-cpp
3232

33-
### Latest release (v1.6.1) ###
33+
### Latest release (v2.0.0) ###
3434

3535
Via git:
3636

3737
git clone https://github.com/unittest-cpp/unittest-cpp
3838
cd unittest-cpp
39-
git checkout v1.6.1
39+
git checkout v2.0.0
4040

4141
Via svn:
4242

43-
svn checkout https://github.com/unittest-cpp/unittest-cpp/tags/v1.6.1 unittest-cpp
43+
svn checkout https://github.com/unittest-cpp/unittest-cpp/tags/v2.0.0 unittest-cpp
4444

4545
License
4646
---------
@@ -77,6 +77,12 @@ Contributors
7777
Historic release notes
7878
----------------------
7979

80+
### Version 2.0.0 (2017-01-13) ###
81+
- Change Check method supporting CHECK macro to accept argument by reference
82+
- Introduce long macro forms (e.g. UNITTEST_CHECK); make short forms optional
83+
- Improved Visual Studio 2015 support
84+
- [Full List](https://github.com/unittest-cpp/unittest-cpp/issues?q=milestone%3A2.0.0+)
85+
8086
### Version 1.6.0 (2016-02-29) ###
8187
- Add REQUIRE macro to end tests early when selected checks fail
8288
- [Full List](https://github.com/unittest-cpp/unittest-cpp/issues?q=milestone%3A1.6.0+)

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 1.6.1.{build}
1+
version: 2.0.0.{build}
22

33
os:
44
- Windows Server 2012 R2

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ AM_CONDITIONAL([WINDOWS],
2323

2424
LT_INIT()
2525

26-
AC_SUBST([LIBUNITTEST_SO_VERSION], [1:6:0])
26+
AC_SUBST([LIBUNITTEST_SO_VERSION], [2:0:0])
2727

2828
# Checks for programs.
2929
AC_PROG_CXX

0 commit comments

Comments
 (0)