Skip to content

Commit

Permalink
Merge branch 'release-v3.4.3'
Browse files Browse the repository at this point in the history
* release-v3.4.3:
  Bump version for release
  Fix special character in password non-login issue
  Add link checking option to documentation make
  • Loading branch information
rastern committed Sep 17, 2020
2 parents cb89692 + fea486a commit aed8d24
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 3.4.2
current_version = 3.4.3
commit = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\.(?P<release>[a-z]+)(?P<build>\d*))?
serialize =
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,4 @@ vmtconnect.egg-info
archive
resources
bin
docs/source/_build
4 changes: 4 additions & 0 deletions docs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ SPHINXBUILD = python -msphinx
SPHINXPROJ = vmt-connect
SOURCEDIR = source
BUILDDIR = ../../vmt-connect-docs
LINKCHECKDIR = source/_build/linkcheck
#PYTHONPATH = ../

#export PYTHONPATH
Expand All @@ -18,6 +19,9 @@ help:
clean:
@echo "Clean disabled."

linkcheck:
@sphinx-build -b linkcheck "$(SOURCEDIR)" "$(LINKCHECKDIR)"

.PHONY: help Makefile clean

# Catch-all target: route all unknown targets to Sphinx using the new
Expand Down
4 changes: 2 additions & 2 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@
# built documents.
#
# The short X.Y version.
version = u'3.4.2'
version = u'3.4.3'
# The full version, including alpha/beta/rc tags.
release = u'3.4.2'
release = u'3.4.3'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion vmtconnect/__about__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

__title__ = 'vmtconnect'
__description__ = 'Turbonomic API Client'
__version__ = '3.4.2'
__version__ = '3.4.3'
__author__ = 'R.A. Stern'
__author_email__ = '[email protected]'
__license__ = 'Apache 2.0'
Expand Down
2 changes: 1 addition & 1 deletion vmtconnect/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -842,7 +842,7 @@ def version(self):
return self.__version

def __login(self):
u, p = (base64.b64decode(self.__basic_auth)).decode().split(':')
u, p = (base64.b64decode(self.__basic_auth)).decode().split(':', maxsplit=1)
body = {'username': (None, u), 'password': (None, p)}
self.request('login', 'POST', disable_hateoas=False, content_type=None, files=body, allow_redirects=False)

Expand Down

0 comments on commit aed8d24

Please sign in to comment.