Skip to content

Commit

Permalink
Merge branch 'release-0.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
mixxorz committed Jun 29, 2015
2 parents e2838a0 + 90ac548 commit d81eae2
Show file tree
Hide file tree
Showing 7 changed files with 38 additions and 15 deletions.
10 changes: 9 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,15 @@ Start your topic branch
$ git checkout -b your-topic-branch
```

Make your changes, push to your fork, and [submit a pull request][pr].
Make your changes (including docs!).

Run the tests.

```bash
$ python tests.py
```

Push to your fork, and [submit a pull request][pr].

[pr]: https://github.com/mixxorz/BehaveToolkit/compare/

Expand Down
8 changes: 4 additions & 4 deletions Default (Windows).sublime-keymap
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[{
"command": "bt_generate_step_function",
"keys": ["ctrl+alt+s"]
"keys": ["ctrl+alt+shift+s"]
}, {
"command": "bt_generate_missing_step_functions",
"keys": ["ctrl+alt+f"]
"keys": ["ctrl+alt+shift+f"]
}, {
"command": "bt_go_to_step_function",
"keys": ["ctrl+alt+g"]
"keys": ["ctrl+alt+shift+g"]
}, {
"command": "bt_run_behave",
"keys": ["ctrl+alt+t"]
"keys": ["ctrl+alt+shift+t"]
}]
2 changes: 1 addition & 1 deletion behave_toolkit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
Behave integration for Sublime Text 3
'''

__version__ = '0.1.0'
__version__ = '0.2.0'
__license__ = 'MIT License'
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,9 +58,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1.0'
version = '0.2.0'
# The full version, including alpha/beta/rc tags.
release = '0.1.0'
release = '0.2.0'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
8 changes: 4 additions & 4 deletions docs/keybindings.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,22 @@ These are the default key bindings:

- Linux ``Super+G``
- OSX ``Alt+G``
- Windows ``Ctrl+Alt+G``
- Windows ``Ctrl+Alt+Shift+G``

- Generate Step Function

- Linux ``Super+S``
- OSX ``Alt+S``
- Windows ``Ctrl+Alt+S``
- Windows ``Ctrl+Alt+Shift+S``

- Generate Missing Step Functions

- Linux ``Super+F``
- OSX ``Alt+F``
- Windows ``Ctrl+Alt+F``
- Windows ``Ctrl+Alt+Shift+F``

- Run behave

- Linux ``Super+T``
- OSX ``Alt+T``
- Windows ``Ctrl+Alt+T``
- Windows ``Ctrl+Alt+Shift+T``
7 changes: 4 additions & 3 deletions messages/0.1.0.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
Changes since 2.1.0:
Changes since 0.1.0:

Feature:
- Initial release
Features and Improvements:

- Initial release
14 changes: 14 additions & 0 deletions messages/0.2.0.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Changes since 0.2.0:

Features and Improvements:

- Added a Context menu
- Added default keybindings
- Added comprehensive documentation
- Use `shutil.which` instead of calling `which` manually.
- Performance Improvements


Bugfixes:

- Fixed bug where repeated unimplemented steps aren't highlighted.

0 comments on commit d81eae2

Please sign in to comment.