diff --git a/Makefile b/Makefile index 24b070c15..8d4b2a1da 100644 --- a/Makefile +++ b/Makefile @@ -23,7 +23,6 @@ pex: -f $(prebuilt_dir) \ --disable-cache \ --not-zip-safe . - -$(RM) wheelhouse test: nosetests --no-byte-compile tests diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a6bb52b7c..884887f1e 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,6 +1,6 @@ # Release Notes for User Sync Tool Version 2.2.2 -These notes apply to v2.2.2rc2 of 2017-10-29. +These notes apply to v2.2.2rc3 of 2017-11-14. ## New Features @@ -16,6 +16,8 @@ These notes apply to v2.2.2rc2 of 2017-10-29. [#293](https://github.com/adobe-apiplatform/user-sync.py/issues/293): Don't crash when existing users are added to secondaries. +[#301](https://github.com/adobe-apiplatform/user-sync.py/issues/301): User Sync fails when adding more than 10 groups to a user. + ## Compatibility with Prior Versions There are no interface changes from prior versions. diff --git a/docs/_includes/post-nav-area.html b/docs/_includes/post-nav-area.html index 7ab430b42..b0253431c 100644 --- a/docs/_includes/post-nav-area.html +++ b/docs/_includes/post-nav-area.html @@ -6,4 +6,5 @@
  • Español
  • Français
  • 日本語
  • +
  • Português
  • diff --git a/docs/_layouts/default.html b/docs/_layouts/default.html index 7d670fcda..2cd184080 100644 --- a/docs/_layouts/default.html +++ b/docs/_layouts/default.html @@ -14,7 +14,7 @@ +
  • Portuguese
  • +
  • Spanish
  • subscribe via RSS

    diff --git a/setup.py b/setup.py index 4e287b022..aee00ce4a 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,7 @@ 'pycryptodome', 'pyldap==2.4.37', 'PyYAML', - 'umapi-client>=2.8', + 'umapi-client>=2.9', 'psutil', 'keyring', 'six' diff --git a/user_sync/version.py b/user_sync/version.py index d203cc8c3..f7d94ec81 100644 --- a/user_sync/version.py +++ b/user_sync/version.py @@ -18,4 +18,4 @@ # OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE # SOFTWARE. -__version__ = '2.2.2rc2' +__version__ = '2.2.2rc3'