Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
pitchum
poezio
Commits
49b785d5
Commit
49b785d5
authored
Jan 31, 2017
by
mathieui
Browse files
Poezio 0.11 release
parent
806485db
Changes
4
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
49b785d5
...
...
@@ -4,6 +4,15 @@ https://dev.louiz.org/projects/poezio/roadmap
* Poezio 1.0 - dev
* Poezio 0.11
- Implementation of XEP-0380
- Docker images
- Improved documentation
- GPG plugin fixes
- Added manpages for the utility scripts
- Misc fixes
* Poezio 0.10
- A lot of cleanup and refactor in order to use cython on the codebase
...
...
doc/source/conf.py
View file @
49b785d5
...
...
@@ -53,9 +53,9 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# built documents.
#
# The short X.Y version.
version
=
'
1.0
'
version
=
'
0.11
'
# The full version, including alpha/beta/rc tags.
release
=
'
1.0-dev
'
release
=
'
0.11
'
add_function_parentheses
=
True
...
...
poezio/args.py
View file @
49b785d5
...
...
@@ -23,6 +23,6 @@ def parse_args(CONFIG_PATH=''):
metavar
=
"CONFIG_FILE"
)
parser
.
add_argument
(
"-v"
,
"--version"
,
dest
=
"version"
,
help
=
SUPPRESS
,
metavar
=
"VERSION"
,
default
=
"
1.0-dev
"
)
default
=
"
0.11
"
)
options
=
parser
.
parse_args
()
return
options
setup.py
View file @
49b785d5
...
...
@@ -65,7 +65,7 @@ with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION
=
readme_fd
.
read
()
setup
(
name
=
"poezio"
,
version
=
"
1.0"
+
version
,
version
=
"
0.11"
,
description
=
"A console XMPP client"
,
long_description
=
LONG_DESCRIPTION
,
ext_modules
=
[
module_poopt
],
...
...
@@ -104,7 +104,7 @@ setup(name="poezio",
(
'share/poezio/'
,
[
'README.rst'
,
'COPYING'
,
'CHANGELOG'
])]
+
find_doc
(
'share/doc/poezio/source'
,
'source'
)
+
find_doc
(
'share/doc/poezio/html'
,
'build/html'
)),
install_requires
=
[
'slixmpp'
,
'aiodns'
],
install_requires
=
[
'slixmpp
>=1.2.4
'
,
'aiodns'
],
extras_require
=
{
'OTR plugin'
:
'python-potr>=1.0'
,
'Screen autoaway plugin'
:
'pyinotify==0.9.4'
})
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment