Skip to content

Commit

Permalink
Update changelog notes v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
andfoy committed Jun 27, 2017
1 parent 0d270e4 commit 39797a1
Show file tree
Hide file tree
Showing 3 changed files with 38 additions and 1 deletion.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
## Version 0.1.2 (2017/06/27)

### Issues Closed

* [Issue 61](https://github.com/spyder-ide/spyder-terminal/issues/61) - Capture all keyboard events when a console is on focus
* [Issue 60](https://github.com/spyder-ide/spyder-terminal/issues/60) - Redirect server output and errors to a file
* [Issue 59](https://github.com/spyder-ide/spyder-terminal/issues/59) - Don't start to create consoles until the server is up and running

In this release 3 issues were closed.

### Pull Requests Merged

* [PR 66](https://github.com/spyder-ide/spyder-terminal/pull/66) - Add Release notes
* [PR 65](https://github.com/spyder-ide/spyder-terminal/pull/65) - PR: Launch first console instance only if server is up
* [PR 63](https://github.com/spyder-ide/spyder-terminal/pull/63) - PR: Make the terminal to capture all keyboard events
* [PR 62](https://github.com/spyder-ide/spyder-terminal/pull/62) - PR: Redirecting server stderr and stdout to files

In this release 4 pull requests were closed.

## Version 0.1.1 (2017/05/12)

### Issues Closed
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.temp
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
## Version 0.1.2 (2017/06/27)

### Issues Closed

* [Issue 61](https://github.com/spyder-ide/spyder-terminal/issues/61) - Capture all keyboard events when a console is on focus
* [Issue 60](https://github.com/spyder-ide/spyder-terminal/issues/60) - Redirect server output and errors to a file
* [Issue 59](https://github.com/spyder-ide/spyder-terminal/issues/59) - Don't start to create consoles until the server is up and running

In this release 3 issues were closed.

### Pull Requests Merged

* [PR 66](https://github.com/spyder-ide/spyder-terminal/pull/66) - Add Release notes
* [PR 65](https://github.com/spyder-ide/spyder-terminal/pull/65) - PR: Launch first console instance only if server is up
* [PR 63](https://github.com/spyder-ide/spyder-terminal/pull/63) - PR: Make the terminal to capture all keyboard events
* [PR 62](https://github.com/spyder-ide/spyder-terminal/pull/62) - PR: Redirecting server stderr and stdout to files

In this release 4 pull requests were closed.
2 changes: 1 addition & 1 deletion spyder_terminal/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@
if PYQT5:
from .terminalplugin import TerminalPlugin as PLUGIN_CLASS

VERSION_INFO = (0, 1, 2, 'dev0')
VERSION_INFO = (0, 1, 2)
__version__ = '.'.join(map(str, VERSION_INFO))

0 comments on commit 39797a1

Please sign in to comment.