Skip to content

Commit

Permalink
Version bump to 0.2.0-alpha.
Browse files Browse the repository at this point in the history
  • Loading branch information
arteymix committed Jun 26, 2015
1 parent 0ecbf22 commit 1f9f7da
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = '0.1'
version = '0.2'
# The full version, including alpha/beta/rc tags.
release = '0.1.4-alpha'
release = '0.2.0-alpha'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion docs/vsgi/server/soup.rst
Expand Up @@ -46,7 +46,7 @@ the ``--help`` flag.
| ``--ssl-key-file`` | none | path to a file containing a PEM-encoded |
| | | private key |
+-----------------------+-----------+-----------------------------------------+
| ``--server-header`` | Valum/0.1 | value to use for the "Server" header on |
| ``--server-header`` | Valum/0.2 | value to use for the "Server" header on |
| | | Messages processed by this server. |
+-----------------------+-----------+-----------------------------------------+
| ``--raw-paths`` | disabled | percent-encoding in the Request-URI |
Expand Down
6 changes: 3 additions & 3 deletions src/vsgi/soup.vala
Expand Up @@ -200,7 +200,7 @@ namespace VSGI.Soup {
{"ssl-key-file", 0, 0, OptionArg.FILENAME, null, "path to a file containing a PEM-encoded private key"},

// headers options
{"server-header", 'h', 0, OptionArg.STRING, null, "value to use for the 'Server' header on Messages processed by this server", "Valum/0.1"},
{"server-header", 'h', 0, OptionArg.STRING, null, "value to use for the 'Server' header on Messages processed by this server", "Valum/0.2"},
{"raw-paths", 0, 0, OptionArg.NONE, null, "percent-encoding in the Request-URI path will not be automatically decoded"},

{null}
Expand Down Expand Up @@ -228,7 +228,7 @@ namespace VSGI.Soup {

var server_header = options.contains ("server-header") ?
options.lookup_value ("server-header", VariantType.STRING).get_string () :
"Valum/0.1";
"Valum/0.2";

ServerListenOptions listen_options = 0;

Expand All @@ -243,7 +243,7 @@ namespace VSGI.Soup {
#else
var port = 3003;
var file_descriptor = 0;
var server_header = "Valum/0.1";
var server_header = "Valum/0.2";
#endif

#if GIO_2_40
Expand Down
4 changes: 2 additions & 2 deletions wscript
Expand Up @@ -3,8 +3,8 @@
import glob

APPNAME='valum'
VERSION='0.1.4-alpha'
API_VERSION='0.1'
VERSION='0.2.0-alpha'
API_VERSION='0.2'

top='.'
out='build'
Expand Down

0 comments on commit 1f9f7da

Please sign in to comment.