Skip to content

Commit

Permalink
chore: bump to 6.8.0 version
Browse files Browse the repository at this point in the history
  • Loading branch information
bameda committed Apr 3, 2024
1 parent baa82a7 commit 72f8011
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 10 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
# Changelog

## 6.8.0 (unreleased)
## 6.8.1 (unreleased)

...

## 6.8.0 (2024-04-03)

- Changed the namespace of the repositories, from kaleidos-ventures to taigaio
- Change license to AGPL version 3.

## 6.7.7 (2024-02-26)
Expand Down
16 changes: 8 additions & 8 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -18,25 +18,25 @@ RUN set -eux; \
apk add \
bash; \
# Install taiga-front core
wget https://github.com/taigaio/taiga-front-dist/archive/6.7.7.zip -O source.zip; \
wget https://github.com/taigaio/taiga-front-dist/archive/6.8.0.zip -O source.zip; \
unzip source.zip; \
mv /taiga-front-dist-6.7.7 /taiga; \
mv /taiga-front-dist-6.8.0 /taiga; \
mv /conf.json.template taiga/dist/; \
chmod +x /docker-entrypoint.d/30_config_env_subst.sh; \
# Install taiga-front contribs
mkdir /taiga/dist/plugins; \
cd /taiga/dist/plugins; \
# Slack
wget https://github.com/taigaio/taiga-contrib-slack/archive/6.7.0.zip -O source.zip; \
unzip -j source.zip "taiga-contrib-slack-6.7.0/front/dist/*" -d slack; \
wget https://github.com/taigaio/taiga-contrib-slack/archive/6.8.0.zip -O source.zip; \
unzip -j source.zip "taiga-contrib-slack-6.8.0/front/dist/*" -d slack; \
rm source.zip; \
# Github
wget http://github.com/taigaio/taiga-contrib-github-auth/archive/6.7.0.zip -O source.zip; \
unzip -j source.zip "taiga-contrib-github-auth-6.7.0/front/dist/*" -d github-auth; \
wget http://github.com/taigaio/taiga-contrib-github-auth/archive/6.8.0.zip -O source.zip; \
unzip -j source.zip "taiga-contrib-github-auth-6.8.0/front/dist/*" -d github-auth; \
rm source.zip; \
# Gitlab
wget http://github.com/taigaio/taiga-contrib-gitlab-auth/archive/6.7.1.zip -O source.zip; \
unzip -j source.zip "taiga-contrib-gitlab-auth-6.7.1/front/dist/*" -d gitlab-auth; \
wget http://github.com/taigaio/taiga-contrib-gitlab-auth/archive/6.8.0.zip -O source.zip; \
unzip -j source.zip "taiga-contrib-gitlab-auth-6.8.0/front/dist/*" -d gitlab-auth; \
rm source.zip; \
cd /; \
# Remove unused dependencies
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "TaigaIO",
"version": "6.7.7",
"version": "6.8.0",
"description": "Taiga project management system (frontend)",
"main": "index.js",
"keywords": [
Expand Down

0 comments on commit 72f8011

Please sign in to comment.