Skip to content

Commit 784e469

Browse files
committed
Bump version to 0.2.3
Update the '@SInCE' taglet for the recently introduced flattening functions.
1 parent 6fd7c9e commit 784e469

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
# The short X.Y version.
5555
version = '0.2'
5656
# The full version, including alpha/beta/rc tags.
57-
release = '0.2.2'
57+
release = '0.2.3'
5858

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

src/vsgi-request.vala

+4-4
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ namespace VSGI {
150150
* If the 'Content-Length' header is set, a fixed-size buffer is used
151151
* instead of dynamically resizing the buffer to fit the stream content.
152152
*
153-
* @since 0.2
153+
* @since 0.2.3
154154
*
155155
* @return buffer containing the stream data
156156
*/
@@ -170,7 +170,7 @@ namespace VSGI {
170170
}
171171

172172
/**
173-
* @since 0.2
173+
* @since 0.2.3
174174
*/
175175
public Bytes flatten_bytes (Cancellable? cancellable = null) throws IOError {
176176
return new Bytes.take (flatten (cancellable));
@@ -180,7 +180,7 @@ namespace VSGI {
180180
* Buffer the body stream asynchronously.
181181
*
182182
* @see VSGI.Request.flatten_async
183-
* @since 0.2
183+
* @since 0.2.3
184184
*
185185
* @return buffer containing the stream data
186186
*/
@@ -202,7 +202,7 @@ namespace VSGI {
202202
}
203203

204204
/**
205-
* @since 0.2
205+
* @since 0.2.3
206206
*/
207207
public async Bytes flatten_bytes_async (int io_priority = GLib.Priority.DEFAULT,
208208
Cancellable? cancellable = null) throws IOError {

wscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
import glob
44

55
APPNAME='valum'
6-
VERSION='0.2.2'
6+
VERSION='0.2.3'
77
API_VERSION='0.2'
88

99
def options(opt):

0 commit comments

Comments
 (0)