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
68207430
Verified
Commit
68207430
authored
Jul 31, 2015
by
mathieui
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
0.9 Release
parent
3633072b
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
4 deletions
+7
-4
CHANGELOG
CHANGELOG
+4
-1
doc/source/conf.py
doc/source/conf.py
+1
-1
setup.py
setup.py
+1
-1
src/args.py
src/args.py
+1
-1
No files found.
CHANGELOG
View file @
68207430
...
...
@@ -2,7 +2,10 @@ This file describes the new features in each poezio release.
For more detailed changelog, see the roadmap:
http://dev.louiz.org/projects/poezio/roadmap
* Poezio 0.9 - dev
* Poezio 1.0 - dev
* Poezio 0.9
- Use slixmpp instead of sleekxmpp, remove threads and locks
- Require python 3.4 for the input handling, event loop, xml parser,
...
...
doc/source/conf.py
View file @
68207430
...
...
@@ -55,7 +55,7 @@ copyright = '%s, Mathieu Pasquet - Florent Le Coz' % time.strftime('%Y')
# The short X.Y version.
version
=
'0.9'
# The full version, including alpha/beta/rc tags.
release
=
'0.9
-dev
'
release
=
'0.9'
add_function_parentheses
=
True
...
...
setup.py
View file @
68207430
...
...
@@ -65,7 +65,7 @@ with open('README.rst', encoding='utf-8') as readme_fd:
LONG_DESCRIPTION
=
readme_fd
.
read
()
setup
(
name
=
"poezio"
,
version
=
"0.9"
+
version
,
version
=
"0.9"
,
description
=
"A console XMPP client"
,
long_description
=
LONG_DESCRIPTION
,
ext_modules
=
[
module_poopt
],
...
...
src/args.py
View file @
68207430
...
...
@@ -23,6 +23,6 @@ def parse_args(CONFIG_PATH=''):
metavar
=
"CONFIG_FILE"
)
parser
.
add_argument
(
"-v"
,
"--version"
,
dest
=
"version"
,
help
=
SUPPRESS
,
metavar
=
"VERSION"
,
default
=
"0.9
-dev
"
)
default
=
"0.9"
)
options
=
parser
.
parse_args
()
return
options
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