Skip to content

Commit

Permalink
Release v0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Gentux committed Aug 6, 2014
1 parent 7025088 commit e9e227f
Show file tree
Hide file tree
Showing 11 changed files with 27 additions and 18 deletions.
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
v0.4, 07-25-2014 --
Add advanced search
Rewrite code structures
Use UID instead of volatile ID

v0.3, 07-25-2014 --
Add documentation
Rewrite code structures
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ If you want to add a minimal autocompletion, you can copy **imapcli_bash_complet
See 'imapcli help <command>' to get further information about specified command

----
imap-cli 0.3
imap-cli 0.4
Copyright (C) 2014 Romain Soufflet
License MIT
This is free software: you are free to change and redistribute it.
Expand Down Expand Up @@ -104,7 +104,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.3.
The actual version of Imap-CLI is 0.4.

Impa-CLI aims to map all IMAP protocols functionnality within a simple python API, and points in development are listed
below
Expand All @@ -120,12 +120,12 @@ below
* Basic Search (search amongs tag, subject and full text within mails)
* Tags (Add or Remove tag from mails)

### v0.3 (current) ###
### v0.3 ###

* Rewrite code structure to ease the creation of API
* Documentation

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

* Advanced Search
* Use UID instead of volatil mails id
Expand Down
4 changes: 2 additions & 2 deletions doc/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.3'
version = '0.4'
# The full version, including alpha/beta/rc tags.
release = '0.3'
release = '0.4'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
14 changes: 9 additions & 5 deletions doc/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.3.
The actual version of Imap-CLI is 0.4.

Impa-CLI aims to map all IMAP protocols functionnality within a simple python API, and points in development are listed
below
Expand All @@ -19,17 +19,21 @@ v0.2
* Basic Search (search amongs tag, subject and full text within mails)
* Tags (Add or Remove tag from mails)

v0.3 (current)
--------------
v0.3
----

* Rewrite code structure to ease the creation of API
* Documentation

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

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

v0.5
----

* List mail by thread
* Display threads
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.3
imap-cli-read 0.4
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.3
imap-cli-flag 0.4
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 @@ -14,7 +14,7 @@
--version Print program version.
----
imap-cli-status 0.3
imap-cli-status 0.4
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 @@ -19,7 +19,7 @@
--version Print program version.
----
imap-cli-status 0.3
imap-cli-status 0.4
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.3
imap-cli-status 0.4
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 @@ -21,7 +21,7 @@ Options:
See 'imapcli help <command>' to get further information about specified command
----
imap-cli 0.3
imap-cli 0.4
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 @@ -46,5 +46,5 @@
scripts = ["imapcli"],
test_suite = "imap_cli.tests",
url = "http://gentux.github.io/imap-cli/",
version = "0.3",
version = "0.4",
)

0 comments on commit e9e227f

Please sign in to comment.