Skip to content

Commit 0bb27b6

Browse files
authored
Release 1.6.0 (#160)
1 parent 6531ba7 commit 0bb27b6

File tree

6 files changed

+24
-5
lines changed

6 files changed

+24
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# tcframe 1.5.0
1+
# tcframe 1.6.0
22

33
[![GitHub Release](https://img.shields.io/github/release/tcframe/tcframe.svg)](https://github.com/tcframe/tcframe)
44
[![Build Status](https://img.shields.io/travis/tcframe/tcframe/master.svg)](https://travis-ci.org/tcframe/tcframe)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@
5353
# built documents.
5454
#
5555
# The short X.Y version.
56-
version = '1.5'
56+
version = '1.6'
5757
# The full version, including alpha/beta/rc tags.
58-
release = '1.5.0'
58+
release = '1.6.0'
5959

6060
# The language for content autogenerated by Sphinx. Refer to documentation
6161
# for a list of supported languages.

docs/getting-started/getting-started.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ Installation
4444

4545
Firstly, we must get **tcframe** on our system. It consists of C++ header files and a few helper scripts.
4646

47-
Download the latest **tcframe** `here <https://github.com/tcframe/tcframe/releases/download/v1.5.0/tcframe_1.5.0.zip>`_. Extract the zip file somewhere on your system; for example, ``~/tcframe``. We will call this directory "**tcframe** home". Confirm that you extracted it correctly by verifying that the directory ``include`` exists directly inside **tcframe** home.
47+
Download the latest **tcframe** `here <https://github.com/tcframe/tcframe/releases/download/v1.6.0/tcframe_1.6.0.zip>`_. Extract the zip file somewhere on your system; for example, ``~/tcframe``. We will call this directory "**tcframe** home". Confirm that you extracted it correctly by verifying that the directory ``include`` exists directly inside **tcframe** home.
4848

4949
Then, add the following lines to your ``~/.bashrc``. This will set the environment variable ``TCFRAME_HOME`` to our **tcframe** home directory, and make ``tcframe`` command available everywhere.
5050

docs/release-notes/1_6_0.rst

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
.. _v1_6_0:
2+
3+
1.6.0
4+
=====
5+
6+
September 17, 2017
7+
8+
Bugfixes
9+
--------
10+
11+
- Fixed a bug where **tcframe** crashed when grading spec with multiple test cases mode, which has no sample test cases.
12+
- Fixed a bug where a ``LINE()`` with only jagged vector contained an extra leading space.
13+
- Fixed a bug where a ``LINES()`` with empty vectors contained extra spaces.
14+
15+
Enhancements
16+
------------
17+
18+
- Disallow specifying ``SIZE()`` after ``LINE()`` and ``RAW_LINE()`` instead of silently ignoring it.

docs/release-notes/release-notes.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ Release Notes
66
.. toctree::
77
:maxdepth: 1
88

9+
1_6_0
910
1_5_0
1011
1_4_0
1112
1_3_0

scripts/tcframe

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ build() {
2121
}
2222

2323
version() {
24-
echo "tcframe 1.5.0"
24+
echo "tcframe 1.6.0"
2525
}
2626

2727
if [ -z "$TCFRAME_HOME" ]; then

0 commit comments

Comments
 (0)