diff --git a/chronos.nimble b/chronos.nimble index 8adfd52..5bb6907 100644 --- a/chronos.nimble +++ b/chronos.nimble @@ -1,5 +1,5 @@ packageName = "chronos" -version = "3.0.2" +version = "3.0.3" author = "Status Research & Development GmbH" description = "Chronos" license = "Apache License 2.0 or MIT" diff --git a/chronos/apps/http/httpclient.nim b/chronos/apps/http/httpclient.nim index 25fa837..7cc3e88 100644 --- a/chronos/apps/http/httpclient.nim +++ b/chronos/apps/http/httpclient.nim @@ -123,7 +123,7 @@ type HttpClientRequest* = object meth*: HttpMethod - address: HttpAddress + address*: HttpAddress state: HttpClientRequestState version*: HttpVersion headers*: HttpTable diff --git a/chronos/apps/http/httpserver.nim b/chronos/apps/http/httpserver.nim index bf440d3..4d1ded0 100644 --- a/chronos/apps/http/httpserver.nim +++ b/chronos/apps/http/httpserver.nim @@ -78,7 +78,6 @@ type query*: HttpTable postTable: Option[HttpTable] rawPath*: string - rawQuery*: string uri*: Uri scheme*: string version*: HttpVersion