Skip to content

Commit

Permalink
1.8.0 release (#1251)
Browse files Browse the repository at this point in the history
  • Loading branch information
cekees committed Jul 17, 2021
1 parent 2b0ec65 commit e390094
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion docs/Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = proteus
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.7.5.dev0
PROJECT_NUMBER = 1.8.0
# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
# quick idea about the purpose of the project. Keep the description short.
Expand Down
2 changes: 1 addition & 1 deletion proteus/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)

__version__ = '1.7.5dev'
__version__ = '1.8.0'

__all__ = ["Archiver",
"Domain",
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ if [ "$1" == "docs" ]; then
fi
git config --global user.email "travis@travis-ci.org"
git config --global user.name "Travis CI"
git clone --branch master https://${GH_TOKEN}@github.com/erdc/proteus-docs.git ./docs/build > /dev/null 2>&1
git clone --branch main https://${GH_TOKEN}@github.com/erdc/proteus-docs.git ./docs/build > /dev/null 2>&1
# check that docs folder exists
if [[ -d ./docs/build ]]
then
Expand All @@ -19,7 +19,7 @@ if [ "$1" == "docs" ]; then
then
git add . *
git commit -m "Travis automatic docs build: $TRAVIS_BUILD_NUMBER"
git push origin master > /dev/null 2>&1
git push origin main > /dev/null 2>&1
else
echo "Error: wrong repository for docs; aborting"
exit 1
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -760,7 +760,7 @@ def __str__(self):

def setup_given_extensions(extensions):
setup(name='proteus',
version='1.7.5dev',
version='1.8.0',
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
Expand Down

0 comments on commit e390094

Please sign in to comment.