Skip to content

Commit 427b32d

Browse files
committed
Release 0.2.0
1 parent ff943c1 commit 427b32d

File tree

6 files changed

+35
-16
lines changed

6 files changed

+35
-16
lines changed

.changes/0.2.0.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
[
2+
{
3+
"category": "Command History",
4+
"description": "Ensure aws prefix is not prepended twice in command history. Fixes `#157 <https://github.com/awslabs/aws-shell/issues/157>`__",
5+
"type": "bugfix"
6+
},
7+
{
8+
"category": "Keybinding",
9+
"description": "Switching between emacs/vi keybindings now functions properly",
10+
"type": "bugfix"
11+
},
12+
{
13+
"category": "Documentation",
14+
"description": "The documentation pane can now be focused and navigated. Fixes `#74 <https://github.com/awslabs/aws-shell/issues/74>`__, `#159 <https://github.com/awslabs/aws-shell/issues/159>`__",
15+
"type": "enhancement"
16+
}
17+
]

.changes/next-release/bugfix-CommandHistory-52041.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/bugfix-Keybinding-59162.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changes/next-release/enhancement-Documentation-157.json

Lines changed: 0 additions & 5 deletions
This file was deleted.

CHANGELOG.rst

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
CHANGELOG
33
=========
44

5+
0.2.0
6+
=====
7+
8+
* bugfix:Command History: Ensure aws prefix is not prepended twice in command history.
9+
Fixes `#157 <https://github.com/awslabs/aws-shell/issues/157>`__
10+
* bugfix:Keybinding: Switching between emacs/vi keybindings now functions properly
11+
* enhancement:Documentation: The documentation pane can now be focused and navigated.
12+
Fixes `#74 <https://github.com/awslabs/aws-shell/issues/74>`__, `#159 <https://github.com/awslabs/aws-shell/issues/159>`__
13+
14+
0.1.1
15+
=====
16+
17+
* bugfix:AWS CLI: Fix issue with latest version of the AWS CLI
18+
that would cause the AWS Shell to raise an exception on startup.
19+
The minimum version of the AWS CLI has been bumped to 1.10.30.
20+
(`issue 118 <https://github.com/awslabs/aws-shell/issues/118>`__)
21+
522
0.1.0
623
=====
724

awsshell/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
from awsshell import utils
1414

1515

16-
__version__ = '0.1.0'
16+
__version__ = '0.2.0'
1717

1818

1919
def determine_doc_index_filename():

0 commit comments

Comments
 (0)