Skip to content

Commit

Permalink
Merge pull request #1258 from yogeshojha/quickfix/version2.0.6
Browse files Browse the repository at this point in the history
fix version
  • Loading branch information
yogeshojha committed May 12, 2024
2 parents 2490a79 + e9fc2b2 commit 9b6ccb3
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 8 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## 2.0.6

**Release Date: May 11, 2024**

## What's Changed
* Fix installation error and celery workers having issues with httpcore
* remove duplicate gospider references by @Talanor in https://github.com/yogeshojha/rengine/pull/1245
* Fix "subdomain" s3 bucket by @Talanor in https://github.com/yogeshojha/rengine/pull/1244
* Fix Txt File Var Declaration by @specters312 in https://github.com/yogeshojha/rengine/pull/1239
* Bug Correction: When dumping and loading customscanengines by @TH3xACE in https://github.com/yogeshojha/rengine/pull/1224
* Fix/infoga removal by @yogeshojha in https://github.com/yogeshojha/rengine/pull/1249
* Fix #1241 by @yogeshojha in https://github.com/yogeshojha/rengine/pull/1251

## New Contributors
* @Talanor made their first contribution in https://github.com/yogeshojha/rengine/pull/1245
* @specters312 made their first contribution in https://github.com/yogeshojha/rengine/pull/1239
* @TH3xACE made their first contribution in https://github.com/yogeshojha/rengine/pull/1224

**Full Changelog**: https://github.com/yogeshojha/rengine/compare/v2.0.5...v2.0.6

## 2.0.5

**Release Date: April 20, 2024**
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ services:
- POSTGRES_HOST=${POSTGRES_HOST}
# THIS IS A MUST FOR CHECKING UPDATE, EVERYTIME A COMMIT IS MERGED INTO
# MASTER, UPDATE THIS!!! MAJOR.MINOR.PATCH https://semver.org/
- RENGINE_CURRENT_VERSION='2.0.5'
- RENGINE_CURRENT_VERSION='2.0.6'
volumes:
- ./web:/usr/src/app
- github_repos:/usr/src/github
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ services:
- POSTGRES_HOST=${POSTGRES_HOST}
# THIS IS A MUST FOR CHECKING UPDATE, EVERYTIME A COMMIT IS MERGED INTO
# MASTER, UPDATE THIS!!! MAJOR.MINOR.PATCH https://semver.org/
- RENGINE_CURRENT_VERSION='2.0.5'
- RENGINE_CURRENT_VERSION='2.0.6'
volumes:
- ./web:/usr/src/app
- github_repos:/usr/src/github
Expand Down
2 changes: 1 addition & 1 deletion web/dashboard/templates/dashboard/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
{% endblock custom_js_css_link %}

{% block breadcrumb_title %}
<span class="badge badge-soft-info">reNgine 2.0.5</span>
<span class="badge badge-soft-info">reNgine 2.0.6</span>
{% endblock breadcrumb_title %}

{% block main_content %}
Expand Down
8 changes: 4 additions & 4 deletions web/templates/base/_items/top_bar.html
Original file line number Diff line number Diff line change
Expand Up @@ -170,18 +170,18 @@ <h6 class="text-overflow m-0">Welcome {{user.get_username}}!</h6>
<div class="logo-box">
<a href="{% url 'dashboardIndex' current_project.slug %}" class="logo logo-dark text-center">
<span class="logo-sm">
<h3 class="text-logo vertical-center">reNgine&nbsp;<small>2.0.5</small></h3>
<h3 class="text-logo vertical-center">reNgine&nbsp;<small>2.0.6</small></h3>
</span>
<span class="logo-lg">
<h3 class="text-logo vertical-center">reNgine&nbsp;<small>2.0.5</small></h3>
<h3 class="text-logo vertical-center">reNgine&nbsp;<small>2.0.6</small></h3>
</span>
</a>
<a href="{% url 'dashboardIndex' current_project.slug %}" class="logo logo-light text-center">
<span class="logo-sm">
<h3 class="text-sm-logo vertical-center">reNgine&nbsp;<small>2.0.5</small></h3>
<h3 class="text-sm-logo vertical-center">reNgine&nbsp;<small>2.0.6</small></h3>
</span>
<span class="logo-lg">
<h3 class="text-lg-logo vertical-center">reNgine&nbsp;<small>2.0.5</small></h3>
<h3 class="text-lg-logo vertical-center">reNgine&nbsp;<small>2.0.6</small></h3>
</span>
</a>
</div>
Expand Down
2 changes: 1 addition & 1 deletion web/templates/base/login.html
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
</a>
</div>
<h3 class="">Login to reNgine</h3>
<p>Current release: v2.0.5</p>
<p>Current release: v2.0.6</p>
</div>
<div class="alert alert-primary" role="alert">
<a href="https://rengine.wiki" target="_blank">Learn how to create reNgine account.</a>
Expand Down

0 comments on commit 9b6ccb3

Please sign in to comment.