Skip to content

Commit 0a1b6c2

Browse files
committed
Bump to version 2.0.0
1 parent afc9473 commit 0a1b6c2

File tree

3 files changed

+18
-2
lines changed

3 files changed

+18
-2
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
=========
33

4+
v2.0.0
5+
------
6+
- Added support for Python 3.6
7+
- Dropped support for Python 2
8+
- Script `webservices` enables the Mobile services
9+
- Fixed issue when installing plugins from local repository
10+
411
v1.7.6
512
------
613
- Language caching is no longer enabled in `mindev` script

README.rst

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,17 @@ Use `pip <http://www.pip-installer.org/en/latest/installing.html>`_::
4141
pip install moodle-sdk --user
4242
mdk init
4343

44-
That's it!
44+
Notes
45+
~~~~~
4546

47+
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>`_).
48+
49+
If it isn't, this snippet for ``~/.profile`` might be useful::
50+
51+
# Set PATH so it includes user's private local bin if it exists.
52+
if [ -d "$HOME/.local/bin" ] ; then
53+
PATH="$HOME/.local/bin:$PATH"
54+
fi
4655

4756
Homebrew
4857
--------

mdk/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@
2222
http://github.com/FMCorz/mdk
2323
"""
2424

25-
__version__ = "1.7.6"
25+
__version__ = "2.0.0"

0 commit comments

Comments
 (0)