Skip to content

Commit

Permalink
Set version to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
susam committed Mar 2, 2017
1 parent 77856f8 commit c742590
Show file tree
Hide file tree
Showing 6 changed files with 21 additions and 15 deletions.
4 changes: 2 additions & 2 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
Changelog
=========

0.3.0 (UNRELEASED)
0.3.0 (2017-03-02)
------------------
- NEW: Display time remaining in the title bar of Windows Command Prompt.
- NEW: Tweak behaviour with configuration file at ~/.timebox.conf.
- NEW: Configuration option 'quiet': Do not beep in the middle of time box.
- NEW: Configuration option 'eot': Show "EOT" instead of smileys at the end.
- NEW: Configuration option 'sober': Show "EOT" instead of smileys at the end.

0.2.0 (2016-06-05)
------------------
Expand Down
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)
=====================
Copyright (c) 2013-2016 Susam Pal
Copyright (c) 2013-2017 Susam Pal

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ compliant shell.

[SHIELD_WIN]: https://img.shields.io/badge/download-timebox%2ecmd%20for%20Windows-brightgreen.svg
[SHIELD_LIN]: https://img.shields.io/badge/download-timebox%20for%20Linux%2fOS%20X-brightgreen.svg
[DOWNLOAD_WIN]: https://github.com/susam/timebox/releases/download/0.2.0/timebox.cmd
[DOWNLOAD_LIN]: https://github.com/susam/timebox/releases/download/0.2.0/timebox
[DOWNLOAD_WIN]: https://github.com/susam/timebox/releases/download/0.3.0/timebox.cmd
[DOWNLOAD_LIN]: https://github.com/susam/timebox/releases/download/0.3.0/timebox

[BUILD_IMG]: https://travis-ci.org/susam/timebox.svg?branch=master
[BUILD_URL]: https://travis-ci.org/susam/timebox
Expand Down
14 changes: 10 additions & 4 deletions dev/README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Todo Developer Notes
====================
Timebox Developer Notes
=======================

Tests
-----
Expand All @@ -22,7 +22,7 @@ measure code coverage of the tests.

Enter the following command to install the shells required for testing
cross-shell compatibility.

make install_shells

### Run Tests ###
Expand Down Expand Up @@ -121,11 +121,17 @@ directory as the current directory.
- Run tests.

make test
make alltest
make test_all
make coverage
firefox coverage/index.html &

- Confirm that code coverage looks good.
- Commit changes.

git status
git diff
git commit -a

- Tag the release.

git tag -a <VERSION> -m "Timebox <VERSION>"
Expand Down
6 changes: 3 additions & 3 deletions timebox
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

# The MIT License (MIT)
#
# Copyright (c) 2013-2016 Susam Pal
# Copyright (c) 2013-2017 Susam Pal
#
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
Expand All @@ -26,9 +26,9 @@
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.


VERSION=0.3.0-DEV
VERSION=0.3.0
AUTHOR="Susam Pal"
COPYRIGHT="Copyright (c) 2013-2016 $AUTHOR"
COPYRIGHT="Copyright (c) 2013-2017 $AUTHOR"
LICENSE_URL="http://susam.in/licenses/mit/"
SUPPORT_URL="https://github.com/susam/timebox/issues"
NAME=${0##*/}
Expand Down
6 changes: 3 additions & 3 deletions timebox.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ rem Timebox

rem The MIT License (MIT)
rem
rem Copyright (c) 2013-2016 Susam Pal
rem Copyright (c) 2013-2017 Susam Pal
rem
rem Permission is hereby granted, free of charge, to any person obtaining
rem a copy of this software and associated documentation files (the
Expand All @@ -31,9 +31,9 @@ rem Starting point of this script.
setlocal

rem Script data.
set VERSION=0.3.0-DEV
set VERSION=0.3.0
set AUTHOR=Susam Pal
set COPYRIGHT=Copyright (c) 2013-2016 %AUTHOR%
set COPYRIGHT=Copyright (c) 2013-2017 %AUTHOR%
set LICENSE_URL=http://susam.in/licenses/mit/
set SUPPORT_URL=https://github.com/susam/timebox/issues
set NAME=%~n0
Expand Down

0 comments on commit c742590

Please sign in to comment.