Skip to content

Commit 39797a1

Browse files
committed
Update changelog notes v0.1.2
1 parent 0d270e4 commit 39797a1

File tree

3 files changed

+38
-1
lines changed

3 files changed

+38
-1
lines changed

CHANGELOG.md

+19
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,22 @@
1+
## Version 0.1.2 (2017/06/27)
2+
3+
### Issues Closed
4+
5+
* [Issue 61](https://github.com/spyder-ide/spyder-terminal/issues/61) - Capture all keyboard events when a console is on focus
6+
* [Issue 60](https://github.com/spyder-ide/spyder-terminal/issues/60) - Redirect server output and errors to a file
7+
* [Issue 59](https://github.com/spyder-ide/spyder-terminal/issues/59) - Don't start to create consoles until the server is up and running
8+
9+
In this release 3 issues were closed.
10+
11+
### Pull Requests Merged
12+
13+
* [PR 66](https://github.com/spyder-ide/spyder-terminal/pull/66) - Add Release notes
14+
* [PR 65](https://github.com/spyder-ide/spyder-terminal/pull/65) - PR: Launch first console instance only if server is up
15+
* [PR 63](https://github.com/spyder-ide/spyder-terminal/pull/63) - PR: Make the terminal to capture all keyboard events
16+
* [PR 62](https://github.com/spyder-ide/spyder-terminal/pull/62) - PR: Redirecting server stderr and stdout to files
17+
18+
In this release 4 pull requests were closed.
19+
120
## Version 0.1.1 (2017/05/12)
221

322
### Issues Closed

CHANGELOG.temp

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
## Version 0.1.2 (2017/06/27)
2+
3+
### Issues Closed
4+
5+
* [Issue 61](https://github.com/spyder-ide/spyder-terminal/issues/61) - Capture all keyboard events when a console is on focus
6+
* [Issue 60](https://github.com/spyder-ide/spyder-terminal/issues/60) - Redirect server output and errors to a file
7+
* [Issue 59](https://github.com/spyder-ide/spyder-terminal/issues/59) - Don't start to create consoles until the server is up and running
8+
9+
In this release 3 issues were closed.
10+
11+
### Pull Requests Merged
12+
13+
* [PR 66](https://github.com/spyder-ide/spyder-terminal/pull/66) - Add Release notes
14+
* [PR 65](https://github.com/spyder-ide/spyder-terminal/pull/65) - PR: Launch first console instance only if server is up
15+
* [PR 63](https://github.com/spyder-ide/spyder-terminal/pull/63) - PR: Make the terminal to capture all keyboard events
16+
* [PR 62](https://github.com/spyder-ide/spyder-terminal/pull/62) - PR: Redirecting server stderr and stdout to files
17+
18+
In this release 4 pull requests were closed.

spyder_terminal/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@
1212
if PYQT5:
1313
from .terminalplugin import TerminalPlugin as PLUGIN_CLASS
1414

15-
VERSION_INFO = (0, 1, 2, 'dev0')
15+
VERSION_INFO = (0, 1, 2)
1616
__version__ = '.'.join(map(str, VERSION_INFO))

0 commit comments

Comments
 (0)