Skip to content

Commit 1f9f7da

Browse files
committed
Version bump to 0.2.0-alpha.
1 parent 0ecbf22 commit 1f9f7da

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

docs/conf.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@
5252
# built documents.
5353
#
5454
# The short X.Y version.
55-
version = '0.1'
55+
version = '0.2'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.1.4-alpha'
57+
release = '0.2.0-alpha'
5858

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

docs/vsgi/server/soup.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ the ``--help`` flag.
4646
| ``--ssl-key-file`` | none | path to a file containing a PEM-encoded |
4747
| | | private key |
4848
+-----------------------+-----------+-----------------------------------------+
49-
| ``--server-header`` | Valum/0.1 | value to use for the "Server" header on |
49+
| ``--server-header`` | Valum/0.2 | value to use for the "Server" header on |
5050
| | | Messages processed by this server. |
5151
+-----------------------+-----------+-----------------------------------------+
5252
| ``--raw-paths`` | disabled | percent-encoding in the Request-URI |

src/vsgi/soup.vala

+3-3
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ namespace VSGI.Soup {
200200
{"ssl-key-file", 0, 0, OptionArg.FILENAME, null, "path to a file containing a PEM-encoded private key"},
201201

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

206206
{null}
@@ -228,7 +228,7 @@ namespace VSGI.Soup {
228228

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

233233
ServerListenOptions listen_options = 0;
234234

@@ -243,7 +243,7 @@ namespace VSGI.Soup {
243243
#else
244244
var port = 3003;
245245
var file_descriptor = 0;
246-
var server_header = "Valum/0.1";
246+
var server_header = "Valum/0.2";
247247
#endif
248248

249249
#if GIO_2_40

wscript

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import glob
44

55
APPNAME='valum'
6-
VERSION='0.1.4-alpha'
7-
API_VERSION='0.1'
6+
VERSION='0.2.0-alpha'
7+
API_VERSION='0.2'
88

99
top='.'
1010
out='build'

0 commit comments

Comments
 (0)