Skip to content

Commit

Permalink
Merge pull request #224 from intelowlproject/develop
Browse files Browse the repository at this point in the history
1.3.0
  • Loading branch information
mlodic authored Sep 6, 2023
2 parents 04ac59f + b3c1307 commit 3d0e4fa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# Changelog
From the v1.3.0 afterwards please check the Release Pages on Github for information regarding the changelog

## [v1.2.1](https://github.com/honeynet/GreedyBear/releases/tag/v1.2.1)
* Fixes and adjusts in the "Feeds Page"
* Added verification of Registration Setup
Expand Down
1 change: 0 additions & 1 deletion .github/release_template.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
# Checklist for creating a new release

- [ ] Update `CHANGELOG.md` for the new version
- [ ] Change version number in `docs/source/schema.yml`, `docker/.version`
- [ ] Verify CI Tests
- [ ] Create release for the branch `develop`. Name it with the name of the version
Expand Down
2 changes: 1 addition & 1 deletion docker/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_GREEDYBEAR_VERSION="v1.2.1"
REACT_APP_GREEDYBEAR_VERSION="1.3.0"
2 changes: 1 addition & 1 deletion docs/source/schema.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
openapi: 3.0.3
info:
title: GreedyBear API specification
version: 1.2.1
version: 1.3.0
paths:
/api/apiaccess:
get:
Expand Down
2 changes: 1 addition & 1 deletion greedybear/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
SLACK_TOKEN = os.environ.get("SLACK_TOKEN", "")
DEFAULT_SLACK_CHANNEL = os.environ.get("DEFAULT_SLACK_CHANNEL", "")

VERSION = os.environ.get("REACT_APP_GREEDYBEAR_VERSION", "").replace("v", "")
VERSION = os.environ.get("REACT_APP_GREEDYBEAR_VERSION", "")
# drf-spectacular
SPECTACULAR_SETTINGS = {
"TITLE": "GreedyBear API specification",
Expand Down

0 comments on commit 3d0e4fa

Please sign in to comment.