Skip to content

Commit e390094

Browse files
authored
1.8.0 release (#1251)
1 parent 2b0ec65 commit e390094

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

docs/Doxyfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = proteus
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 1.7.5.dev0
41+
PROJECT_NUMBER = 1.8.0
4242
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4343
# for a project that appears at the top of each page and should give viewer a
4444
# quick idea about the purpose of the project. Keep the description short.

proteus/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
import pkgutil
1010
__path__ = pkgutil.extend_path(__path__, __name__)
1111

12-
__version__ = '1.7.5dev'
12+
__version__ = '1.8.0'
1313

1414
__all__ = ["Archiver",
1515
"Domain",

scripts/deploy.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ if [ "$1" == "docs" ]; then
77
fi
88
git config --global user.email "[email protected]"
99
git config --global user.name "Travis CI"
10-
git clone --branch master https://${GH_TOKEN}@github.com/erdc/proteus-docs.git ./docs/build > /dev/null 2>&1
10+
git clone --branch main https://${GH_TOKEN}@github.com/erdc/proteus-docs.git ./docs/build > /dev/null 2>&1
1111
# check that docs folder exists
1212
if [[ -d ./docs/build ]]
1313
then
@@ -19,7 +19,7 @@ if [ "$1" == "docs" ]; then
1919
then
2020
git add . *
2121
git commit -m "Travis automatic docs build: $TRAVIS_BUILD_NUMBER"
22-
git push origin master > /dev/null 2>&1
22+
git push origin main > /dev/null 2>&1
2323
else
2424
echo "Error: wrong repository for docs; aborting"
2525
exit 1

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -760,7 +760,7 @@ def __str__(self):
760760

761761
def setup_given_extensions(extensions):
762762
setup(name='proteus',
763-
version='1.7.5dev',
763+
version='1.8.0',
764764
classifiers=[
765765
'Development Status :: 4 - Beta',
766766
'Environment :: Console',

0 commit comments

Comments
 (0)