Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
poezio
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Maxime Buquet
poezio
Commits
49b785d5
Commit
49b785d5
authored
Jan 31, 2017
by
mathieui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Poezio 0.11 release
parent
806485db
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
14 additions
and
5 deletions
+14
-5
CHANGELOG
CHANGELOG
+9
-0
doc/source/conf.py
doc/source/conf.py
+2
-2
poezio/args.py
poezio/args.py
+1
-1
setup.py
setup.py
+2
-2
No files found.
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
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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