8000 Update docs, versions for 1.6.0. · unittest-cpp/unittest-cpp@b69b63a · GitHub
[go: up one dir, main page]

Skip to content

Commit b69b63a

Browse files
committed
Update docs, versions for 1.6.0.
1 parent 1368722 commit b69b63a

File tree

4 files changed

+13
-8
lines changed

4 files changed

+13
-8
lines changed

.gitmodules

+1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
[submodule "docs"]
22
path = docs
33
url = https://github.com/unittest-cpp/unittest-cpp.wiki.git
4+
ignore = dirty

README.md

+9-5
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
UnitTest++
55
===========
66

7-
UnitTest++ is a lightweight unit testing framework for C++. It was designed to do test-driven development on a wide variety of platforms. Simplicity, portability, speed, and small footprint are all very important aspects of UnitTest++. UnitTest++ is ANSI portable C++ and makes minimal use of advanced library and languages features, which means it should be easily portable to just about any platform. Out of the box, the following platforms are supported:
7+
UnitTest++ is a lightweight unit testing framework for C++. It was designed to do test-driven development on a wide variety of platforms. Simplicity, portability, speed, and small footprint are all very important aspects of UnitTest++. UnitTest++ is mostly standard C++ and makes minimal use of advanced library and language features, which means it should be easily portable to just about any platform. Out of the box, the following platforms are supported:
88

99
* Windows
1010
* Linux
@@ -16,7 +16,7 @@ The full documentation for building and using UnitTest++ can be found on the [Gi
1616

1717
Pre-requisites
1818
---------------
19-
While there are currently some bundled makefiles and projects, UnitTest++ is primarily built and supported using [CMake](http://cmake.org).
19+
While there are currently some bundled automake files, UnitTest++ is primarily built and supported using [CMake](http://cmake.org).
2020

2121
Downloading
2222
------------
@@ -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.5.1) ###
33+
### Latest release (v1.6.0) ###
3434

3535
Via git:
3636

3737
git clone https://github.com/unittest-cpp/unittest-cpp
3838
cd unittest-cpp
39-
git checkout v1.5.1
39+
git checkout v1.6.0
4040

4141
Via svn:
4242

43-
svn checkout https://github.com/unittest-cpp/unittest-cpp/tags/v1.5.1 unittest-cpp
43+
svn checkout https://github.com/unittest-cpp/unittest-cpp/tags/v1.6.0 unittest-cpp
4444

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

80+
### Version 1.6.0 (2016-02-29) ###
81+
- Add REQUIRE macro to end tests early when selected checks fail
82+
- [Full List](https://github.com/unittest-cpp/unittest-cpp/issues?q=milestone%3A1.6.0+)
83+
8084
### Version 1.5.1 (2016-01-30) ###
8185
- pkg-config support
8286
- Fix for Visual Studio 2010 compilation issue in 1.5.0

configure.ac

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([UnitTest++], [1.5.1], [pjohnmeyer@gmail.com])
5+
AC_INIT([UnitTest++], [1.6.0], [pjohnmeyer@gmail.com])
66
AC_CONFIG_SRCDIR([UnitTest++/TestDetails.cpp])
77
AC_CONFIG_MACRO_DIR([m4])
88
AC_CONFIG_HEADERS([config.h])
@@ -13,7 +13,7 @@ AM_CONDITIONAL([WINDOWS],
1313
[test "${host#*mingw}" != "${host}" -o "${host#*msvc}" != "${host}"])
1414
LT_INIT()
1515

16-
AC_SUBST([LIBUNITTEST_SO_VERSION], [1:5:1])
16+
AC_SUBST([LIBUNITTEST_SO_VERSION], [1:6:0])
1717

1818
# Checks for programs.
1919
AC_PROG_CXX

docs

Submodule docs updated from 8d4ad23 to 14495a3

0 commit comments

Comments
 (0)
0