Skip to content

Commit

Permalink
Update docs, versions for 1.6.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
pjohnmeyer committed Mar 1, 2016
1 parent 1368722 commit b69b63a
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
[submodule "docs"]
path = docs
url = https://github.com/unittest-cpp/unittest-cpp.wiki.git
ignore = dirty
14 changes: 9 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
UnitTest++
===========

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:
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:

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

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

Downloading
------------
Expand All @@ -30,17 +30,17 @@ Via svn:

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

### Latest release (v1.5.1) ###
### Latest release (v1.6.0) ###

Via git:

git clone https://github.com/unittest-cpp/unittest-cpp
cd unittest-cpp
git checkout v1.5.1
git checkout v1.6.0

Via svn:

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

License
---------
Expand Down Expand Up @@ -77,6 +77,10 @@ Contributors
Historic release notes
----------------------

### Version 1.6.0 (2016-02-29) ###
- Add REQUIRE macro to end tests early when selected checks fail
- [Full List](https://github.com/unittest-cpp/unittest-cpp/issues?q=milestone%3A1.6.0+)

### Version 1.5.1 (2016-01-30) ###
- pkg-config support
- Fix for Visual Studio 2010 compilation issue in 1.5.0
Expand Down
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([UnitTest++], [1.5.1], [[email protected]])
AC_INIT([UnitTest++], [1.6.0], [[email protected]])
AC_CONFIG_SRCDIR([UnitTest++/TestDetails.cpp])
AC_CONFIG_MACRO_DIR([m4])
AC_CONFIG_HEADERS([config.h])
Expand All @@ -13,7 +13,7 @@ AM_CONDITIONAL([WINDOWS],
[test "${host#*mingw}" != "${host}" -o "${host#*msvc}" != "${host}"])
LT_INIT()

AC_SUBST([LIBUNITTEST_SO_VERSION], [1:5:1])
AC_SUBST([LIBUNITTEST_SO_VERSION], [1:6:0])

# Checks for programs.
AC_PROG_CXX
Expand Down
2 changes: 1 addition & 1 deletion docs
Submodule docs updated from 8d4ad2 to 14495a

0 comments on commit b69b63a

Please sign in to comment.