Skip to content

Commit

Permalink
bumped version to 4.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mlodic committed Jun 30, 2022
1 parent 0d3c2ac commit 0a18a5a
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/release_template.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

- [ ] (optional) If we changed/added Docker Analyzers, we need to configure Docker Hub / Dependabot properly.
- [ ] Update `CHANGELOG.md` for the new version
- [ ] Change version number in `conf.py`, `.env`, `docker/.version`, `settings.commons.py`, `schema.yml` and `start.py`
- [ ] Change version number in `conf.py`, `.env`, `docker/.version`, `settings.commons.py`, `docs/schema.yml` and `start.py`
- [ ] Verify CI Tests
- [ ] Create release for the branch `develop`. [Automate.io](https://automate.io/app/bots/list) should automatically create [Twitter](https://twitter.com/intel_owl) and [Linkedin](https://www.linkedin.com/in/matteo-lodi-90/) posts.
Write the following statement there (change the version number):
Expand Down
2 changes: 1 addition & 1 deletion docker/.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
### DO NOT CHANGE THIS VALUE !!
### It should be updated only when you pull latest changes off from the 'master' branch of IntelOwl.
INTELOWL_TAG_VERSION=v3.4.1
INTELOWL_TAG_VERSION=v4.0.0
2 changes: 1 addition & 1 deletion docker/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
REACT_APP_INTELOWL_VERSION="v3.4.0"
REACT_APP_INTELOWL_VERSION="v4.0.0"
2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = "Matteo Lodi"

# The full version, including alpha/beta/rc tags
release = "v3.4.1"
release = "v4.0.0"


# -- General configuration ---------------------------------------------------
Expand Down
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: IntelOwl API specification
version: 3.4.1
version: 4.0.0
paths:
/api/analyze_file:
post:
Expand Down
2 changes: 1 addition & 1 deletion intel_owl/settings/commons.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
STAGE_CI = STAGE == "ci"


VERSION = "3.4.0"
VERSION = "4.0.0"
PUBLIC_DEPLOYMENT = get_secret("PUBLIC_DEPLOYMENT", "True") == "True"
PROJECT_LOCATION = "/opt/deploy/intel_owl"

Expand Down
2 changes: 1 addition & 1 deletion start.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
)
exit(2)

CURRENT_VERSION = "3.4.1"
CURRENT_VERSION = "4.0.0"

DOCKER_ANALYZERS = [
"tor_analyzers",
Expand Down

0 comments on commit 0a18a5a

Please sign in to comment.