Skip to content

Commit

Permalink
Release v0.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Gentux committed Sep 8, 2014
1 parent 11c0739 commit d4364d8
Show file tree
Hide file tree
Showing 12 changed files with 25 additions and 20 deletions.
7 changes: 6 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
v0.4, 07-25-2014 --
v0.5, 09-08-2014 --
Add IMAP Shell in scripts directory
Display search and list by thread
Add tests and tests coverage

v0.4, 08-06-2014 --
Add advanced search
Rewrite code structures
Use UID instead of volatile ID
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ If you want to benefit from the wrapper script described below, copy the script
See 'imapcli help <command>' to get further information about specified command"

----
imap-cli 0.4
imap-cli 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down Expand Up @@ -111,7 +111,7 @@ You can also [open new issues](https://github.com/Gentux/imap-cli/issues/new) fo

## Roadmap ##

The actual version of Imap-CLI is 0.4.
The actual version of Imap-CLI is 0.5.

Imap-CLI aims to map all IMAP protocols functionnality within a simple python API, and points in development are listed
below
Expand All @@ -132,13 +132,13 @@ below
* Rewrite code structure to ease the creation of API
* Documentation

### v0.4 (current) ###
### v0.4 ###

* Advanced Search
* Use UID instead of volatil mails id
* Read all type of mail and handle attachments

### v0.5 ###
### v0.5 (current) ###

* List mail by thread
* Display threads
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@
# built documents.
#
# The short X.Y version.
version = '0.4'
version = '0.5'
# The full version, including alpha/beta/rc tags.
release = '0.4'
release = '0.5'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
10 changes: 5 additions & 5 deletions docs/roadmap.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Roadmap
=======

The actual version of Imap-CLI is 0.4.
The actual version of Imap-CLI is 0.5.

Impa-CLI aims to map all IMAP protocols functionnality within a simple python API, and points in development are listed
below
Expand All @@ -25,15 +25,15 @@ v0.3
* Rewrite code structure to ease the creation of API
* Documentation

v0.4 (current)
--------------
v0.4
----

* Advanced Search
* Use UID instead of volatil mails id
* Read all type of mail and handle attachments

v0.5
----
v0.5 (current)
--------------

* List mail by thread
* Display threads
2 changes: 1 addition & 1 deletion imap_cli/const.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""Constant used by Imap_CLI packages """

# IMAP CLI version number
VERSION = 0.4
VERSION = 0.5

# IMAP Constant
#
Expand Down
2 changes: 1 addition & 1 deletion imap_cli/fetch.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
--version Print program version.
----
imap-cli-read 0.4
imap-cli-read 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down
2 changes: 1 addition & 1 deletion imap_cli/flag.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
--version Print program version.
----
imap-cli-flag 0.4
imap-cli-flag 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down
2 changes: 1 addition & 1 deletion imap_cli/list_mail.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
--version Print program version.
----
imap-cli-list 0.4
imap-cli-list 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down
2 changes: 1 addition & 1 deletion imap_cli/search.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
--version Print program version.
----
imap-cli-search 0.4
imap-cli-search 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down
2 changes: 1 addition & 1 deletion imap_cli/summary.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
--version Print program version.
----
imap-cli-status 0.4
imap-cli-status 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down
2 changes: 1 addition & 1 deletion imapcli
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Options:
See 'imapcli help <command>' to get further information about specified command"

VERSION_MESSAGE="
imap-cli 0.4
imap-cli 0.5
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,5 @@
scripts=["imapcli"],
test_suite="nose.collector",
url="http://gentux.github.io/imap-cli/",
version="0.4",
version="0.5",
)

0 comments on commit d4364d8

Please sign in to comment.