Skip to content

Commit

Permalink
Bump to version 2.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
FMCorz committed Feb 18, 2020
1 parent afc9473 commit 0a1b6c2
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changelog
=========

v2.0.0
------
- Added support for Python 3.6
- Dropped support for Python 2
- Script `webservices` enables the Mobile services
- Fixed issue when installing plugins from local repository

v1.7.6
------
- Language caching is no longer enabled in `mindev` script
Expand Down
11 changes: 10 additions & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,17 @@ Use `pip <http://www.pip-installer.org/en/latest/installing.html>`_::
pip install moodle-sdk --user
mdk init

That's it!
Notes
~~~~~

This method does not require ``sudo`` as it installs MDK for the current user. It is assumed that ``~/.local/bin`` is in your PATH (or `equivalent <https://docs.python.org/3/library/site.html#site.USER_BASE>`_).

If it isn't, this snippet for ``~/.profile`` might be useful::

# Set PATH so it includes user's private local bin if it exists.
if [ -d "$HOME/.local/bin" ] ; then
PATH="$HOME/.local/bin:$PATH"
fi

Homebrew
--------
Expand Down
2 changes: 1 addition & 1 deletion mdk/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,4 @@
http://github.com/FMCorz/mdk
"""

__version__ = "1.7.6"
__version__ = "2.0.0"

0 comments on commit 0a1b6c2

Please sign in to comment.