Skip to content

Commit

Permalink
Release 1.6.0 (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
fushar committed Sep 17, 2017
1 parent 6531ba7 commit 0bb27b6
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tcframe 1.5.0
# tcframe 1.6.0

[![GitHub Release](https://img.shields.io/github/release/tcframe/tcframe.svg)](https://github.com/tcframe/tcframe)
[![Build Status](https://img.shields.io/travis/tcframe/tcframe/master.svg)](https://travis-ci.org/tcframe/tcframe)
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@
# built documents.
#
# The short X.Y version.
version = '1.5'
version = '1.6'
# The full version, including alpha/beta/rc tags.
release = '1.5.0'
release = '1.6.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started/getting-started.rst
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Installation

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

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

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.

Expand Down
18 changes: 18 additions & 0 deletions docs/release-notes/1_6_0.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
.. _v1_6_0:

1.6.0
=====

September 17, 2017

Bugfixes
--------

- Fixed a bug where **tcframe** crashed when grading spec with multiple test cases mode, which has no sample test cases.
- Fixed a bug where a ``LINE()`` with only jagged vector contained an extra leading space.
- Fixed a bug where a ``LINES()`` with empty vectors contained extra spaces.

Enhancements
------------

- Disallow specifying ``SIZE()`` after ``LINE()`` and ``RAW_LINE()`` instead of silently ignoring it.
1 change: 1 addition & 0 deletions docs/release-notes/release-notes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ Release Notes
.. toctree::
:maxdepth: 1

1_6_0
1_5_0
1_4_0
1_3_0
Expand Down
2 changes: 1 addition & 1 deletion scripts/tcframe
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ build() {
}

version() {
echo "tcframe 1.5.0"
echo "tcframe 1.6.0"
}

if [ -z "$TCFRAME_HOME" ]; then
Expand Down

0 comments on commit 0bb27b6

Please sign in to comment.