diff --git a/CHANGELOG.md b/CHANGELOG.md index a95192dd2..a264ea545 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,9 +10,15 @@ ### Other changes -## [0.2.2] - 2021-04-15 +## [0.2.3] - 2021-04-19 ### Other changes +- added CHANGELOG.md and CONTRIBUTING.md files [#487](https://github.com/golemfactory/goth/pull/487) +- updated default goth assets [#490](https://github.com/golemfactory/goth/pull/490) + +## [0.2.2] - 2021-04-15 + +### Features - enabled overriding values when parsing `goth-config.yml` file [#489](https://github.com/golemfactory/goth/pull/489) ## [0.2.1] - 2021-04-14 diff --git a/goth/default-assets/web-root/.gitignore b/goth/default-assets/web-root/.gitignore index e69de29bb..61be49cce 100644 --- a/goth/default-assets/web-root/.gitignore +++ b/goth/default-assets/web-root/.gitignore @@ -0,0 +1,6 @@ +# Ignore everything in this directory +* +# With some exceptions +!.gitignore +!params.json +!upload diff --git a/goth/default-assets/web-root/params.json b/goth/default-assets/web-root/params.json new file mode 100644 index 000000000..0967ef424 --- /dev/null +++ b/goth/default-assets/web-root/params.json @@ -0,0 +1 @@ +{} diff --git a/goth/default-assets/web-root/upload/.gitignore b/goth/default-assets/web-root/upload/.gitignore new file mode 100644 index 000000000..ac921957f --- /dev/null +++ b/goth/default-assets/web-root/upload/.gitignore @@ -0,0 +1,4 @@ +# Ignore everything in this directory +* +# Except .gitignore itself +!.gitignore diff --git a/pyproject.toml b/pyproject.toml index 82c148784..82f537e90 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ exclude= '/(\.eggs|\.git|\.hg|\.mypy_cache|\.nox|\.tox|\.venv|venv|\.svn|_build| [tool.poetry] name = "goth" -version = "0.2.2" +version = "0.2.3" description = "Golem Test Harness - integration testing framework" authors = ["Golem Factory "] license = "GPL-3.0"