Skip to content

Commit

Permalink
Bumped version
Browse files Browse the repository at this point in the history
  • Loading branch information
mattLLVW committed Oct 7, 2019
1 parent 7377f90 commit 127ba53
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 9 deletions.
16 changes: 14 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,19 @@
# Changelog

## [2018.3.2] - 2019-10-07

- use slim docker image

- Added rest auth

- Added pillar override

- Updated deps

[2018.3.2]: https://github.com/latenighttales/alcali/v2018.3.1...v2018.3.2

## [2018.3.1] - 2019-09-21
### Added

- Frontend refactor

[2018.3.1]: https://github.com/latenighttales/alcali/v2018.3.1...HEAD
[2018.3.1]: https://github.com/latenighttales/alcali/v2018.3.1...v2018.3.2
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2018.3.1
2018.3.2
2 changes: 1 addition & 1 deletion api/management/commands/current_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ class Command(BaseCommand):
def handle(self, *args, **options):

# TODO: Dynamic
self.stdout.write("alcali version 2019.2.1")
self.stdout.write("alcali version 2018.3.2")
3 changes: 2 additions & 1 deletion docs/docs/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,8 @@ Otherwise, there is a [Formula](https://github.com/latenighttales/alcali-formula
The official [Docker image](https://hub.docker.com/r/latenighttales/alcali) for Alcali comes with all dependencies pre-installed and ready-to-use with the latest version published on PyPI. Pull it with:

```commandline
docker pull latenighttales/alcali:2019.2.1
# you can specify which version: latenighttales/alcali:2018.3.2
docker pull latenighttales/alcali:latest
```
The `alcali` executable is provided as an entrypoint.

Expand Down
6 changes: 3 additions & 3 deletions docs/docs/running.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You can verify installation by running:

```commandline
alcali current_version
# alcali version 2019.2.1
# alcali version 2019.2.2
```

You can also check that Alcali can access `salt` database and that [needed env var](configuration.md) are set and loaded by running:
Expand Down Expand Up @@ -70,6 +70,6 @@ gunicorn config.wsgi:application -w 4 --chdir $(alcali location)

In a docker container:
```commandline
docker run --rm -it -p 8000:8000 --env-file=FILE latenighttales/alcali:2019.2.1 bash -c "gunicorn config.wsgi:application -w 4 --chdir $(alcali location)"
docker run --rm -it -p 8000:8000 --env-file=FILE latenighttales/alcali:2019.2.2 bash -c "gunicorn config.wsgi:application -w 4 --chdir $(alcali location)"
```
Where FILE is the location of the [.env file](configuration.md)
Where FILE is the location of the [.env file](configuration.md)
2 changes: 1 addition & 1 deletion tests/test_command.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def test_manage_token_reset(admin_user):
def test_current_version():
out = StringIO()
call_command("current_version", stdout=out)
assert "alcali version 2019.2.1" in out.getvalue()
assert "alcali version 2018.3.2" in out.getvalue()


def test_location():
Expand Down

0 comments on commit 127ba53

Please sign in to comment.