Skip to content

Commit e9e227f

Browse files
committed
Release v0.4
1 parent 7025088 commit e9e227f

File tree

11 files changed

+27
-18
lines changed

11 files changed

+27
-18
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
v0.4, 07-25-2014 --
2+
Add advanced search
3+
Rewrite code structures
4+
Use UID instead of volatile ID
5+
16
v0.3, 07-25-2014 --
27
Add documentation
38
Rewrite code structures

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ If you want to add a minimal autocompletion, you can copy **imapcli_bash_complet
5959
See 'imapcli help <command>' to get further information about specified command
6060

6161
----
62-
imap-cli 0.3
62+
imap-cli 0.4
6363
Copyright (C) 2014 Romain Soufflet
6464
License MIT
6565
This is free software: you are free to change and redistribute it.
@@ -104,7 +104,7 @@ You can also [open new issues](https://github.com/Gentux/imap-cli/issues/new) fo
104104

105105
## Roadmap ##
106106

107-
The actual version of Imap-CLI is 0.3.
107+
The actual version of Imap-CLI is 0.4.
108108

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

123-
### v0.3 (current) ###
123+
### v0.3 ###
124124

125125
* Rewrite code structure to ease the creation of API
126126
* Documentation
127127

128-
### v0.4 ###
128+
### v0.4 (current) ###
129129

130130
* Advanced Search
131131
* Use UID instead of volatil mails id

doc/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,9 +55,9 @@
5555
# built documents.
5656
#
5757
# The short X.Y version.
58-
version = '0.3'
58+
version = '0.4'
5959
# The full version, including alpha/beta/rc tags.
60-
release = '0.3'
60+
release = '0.4'
6161

6262
# The language for content autogenerated by Sphinx. Refer to documentation
6363
# for a list of supported languages.

doc/roadmap.rst

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Roadmap
22
=======
33

4-
The actual version of Imap-CLI is 0.3.
4+
The actual version of Imap-CLI is 0.4.
55

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

22-
v0.3 (current)
23-
--------------
22+
v0.3
23+
----
2424

2525
* Rewrite code structure to ease the creation of API
2626
* Documentation
2727

28-
v0.4
29-
----
28+
v0.4 (current)
29+
--------------
3030

3131
* Advanced Search
3232
* Use UID instead of volatil mails id
3333
* Read all type of mail and handle attachments
34+
35+
v0.5
36+
----
37+
3438
* List mail by thread
3539
* Display threads

imap_cli/fetch.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
--version Print program version.
1515
1616
----
17-
imap-cli-read 0.3
17+
imap-cli-read 0.4
1818
Copyright (C) 2014 Romain Soufflet
1919
License MIT
2020
This is free software: you are free to change and redistribute it.

imap_cli/flag.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
--version Print program version.
1515
1616
----
17-
imap-cli-flag 0.3
17+
imap-cli-flag 0.4
1818
Copyright (C) 2014 Romain Soufflet
1919
License MIT
2020
This is free software: you are free to change and redistribute it.

imap_cli/list_mail.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
--version Print program version.
1515
1616
----
17-
imap-cli-status 0.3
17+
imap-cli-status 0.4
1818
Copyright (C) 2014 Romain Soufflet
1919
License MIT
2020
This is free software: you are free to change and redistribute it.

imap_cli/search.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
--version Print program version.
2020
2121
----
22-
imap-cli-status 0.3
22+
imap-cli-status 0.4
2323
Copyright (C) 2014 Romain Soufflet
2424
License MIT
2525
This is free software: you are free to change and redistribute it.

imap_cli/summary.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
--version Print program version.
1414
1515
----
16-
imap-cli-status 0.3
16+
imap-cli-status 0.4
1717
Copyright (C) 2014 Romain Soufflet
1818
License MIT
1919
This is free software: you are free to change and redistribute it.

imapcli

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Options:
2121
See 'imapcli help <command>' to get further information about specified command
2222
2323
----
24-
imap-cli 0.3
24+
imap-cli 0.4
2525
Copyright (C) 2014 Romain Soufflet
2626
License MIT
2727
This is free software: you are free to change and redistribute it.

0 commit comments

Comments
 (0)