Bump version to 1.0.0.post1, fix version in about dialog

Signed-off-by: Dan Yeaw <dan@yeaw.me>
This commit is contained in:
Dan Yeaw
2019-04-04 18:29:44 -04:00
parent 2648e8886f
commit 2eba9134ff
4 changed files with 6 additions and 6 deletions

View File

@ -15,7 +15,7 @@ passes them to the main Application instance.
# __version__ = '1.2.3' # Final Release
# __version__ = '1.2.3.post1' # Post Release 1
__version__ = "1.0.0"
__version__ = "1.0.0.post1"
__all__ = ["main"]
from optparse import OptionParser

View File

@ -7,7 +7,7 @@ from gi.repository import GdkPixbuf
from gi.repository import Gtk
from zope.interface import implementer
from gaphor.application import Application
from gaphor import __version__
from gaphor.core import _, inject, action, build_action_group
from gaphor.interfaces import IService, IActionProvider
@ -48,7 +48,7 @@ class HelpService(object):
"logo.png",
)
logo = GdkPixbuf.Pixbuf.new_from_file(logo_file)
version = Application.distribution.version
version = __version__
about = Gtk.Dialog.new()
about.set_title(_("About Gaphor"))
about.set_modal(True)
@ -76,7 +76,7 @@ class HelpService(object):
label.set_justify(Gtk.Justification.CENTER)
tab_vbox.pack_start(label, True, True, 0)
add_label('<span weight="bold">version %s</span>' % version)
add_label('<span weight="bold">Version %s</span>' % version)
add_label(
'<span variant="smallcaps">Gaphor is the simple modeling tool written in Python</span>',
8,

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "gaphor"
version = "1.0.0"
version = "1.0.0.post1"
description = "Gaphor is the simple modeling tool written in Python."
authors = [
"Arjan J. Molenaar <gaphor@gmail.com>",

View File

@ -16,7 +16,7 @@ from utils.command.build_pot import build_pot
from utils.command.build_uml import build_uml
from utils.command.install_lib import install_lib
VERSION = "1.0.0"
VERSION = "1.0.0.post1"
LINGUAS = ["ca", "es", "fr", "nl", "sv"]
sys.path.insert(0, ".")