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:
@ -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
|
||||
|
@ -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,
|
||||
|
@ -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>",
|
||||
|
Reference in New Issue
Block a user