Commit d2452b3b authored by Andrei Sobolev's avatar Andrei Sobolev
Browse files

Bump version

parent 8deb319c
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "gims"
version = "1.3"
version = "1.4.0"
authors = [
    {name = "Iker Hurtado", email = "iker@ikerhurtado.com"},
    {name = "Sebastian Kokott", email = "kokott@fhi.mpg.de"},
+1 −1
Original line number Diff line number Diff line
@@ -45,7 +45,7 @@
<a href="https://spglib.github.io/spglib/" target="_blank">Spglib</a>
      <a href="https://threejs.org/" target="_blank">three.js</a><a href="https://flask.palletsprojects.com/en/1.1.x/">Flask</a><a href="https://plot.ly" target="_blank">plotly</a> </div>
    <div style="text-align: center; margin: 40px; color: #777;"> <a href="https://gims-developers.gitlab.io/gims/whereToFind.html#running-versions"
        target="_blank">Version 1.3.0 </a><a href="https://gims-developers.gitlab.io/gims/releaseNotes/releaseNotes.html"
        target="_blank">Version 1.4.0 </a><a href="https://gims-developers.gitlab.io/gims/releaseNotes/releaseNotes.html"
        target="_blank"> Release Notes </a><a href="https://gims-developers.gitlab.io/gims/developerManual/contributing.html"
        target="_blank"> Contributing </a><a href="https://doi.org/10.21105/joss.02767"
        target="_blank"> DOI: 10.21105/joss.02767 </a>
+1 −1
Original line number Diff line number Diff line
{
  "name": "gims-client",
  "version": "1.3.0",
  "version": "1.4.0",
  "browserslist": [
    "last 1 version",
    "> 1%",
+9 −9
Original line number Diff line number Diff line
@@ -37,15 +37,15 @@ if not found:

found = False

for line in fileinput.input(setup_py, inplace=True):
    if '    version="' in line:
        found = True
        print(f'    version="{new_version}",')
    else:
        print(line, end='')

if not found:
    print("Did not find a version tag, where it should be:",setup_py)
#for line in fileinput.input(setup_py, inplace=True):
#    if '    version="' in line:
#        found = True
#        print(f'    version="{new_version}",')
#    else:
#        print(line, end='')

#if not found:
#    print("Did not find a version tag, where it should be:",setup_py)

found = False