Skip to content

Commit

Permalink
Release Version 2.0.1
Browse files Browse the repository at this point in the history
# v2.0.1

Fix `python-version-check.yml` not running correctly.
Add `.gitignore` as mentioned in previous changelog.
    Added `.env` to gitignore.
  • Loading branch information
redtrillix committed Mar 31, 2024
1 parent c31a23f commit 6bf4487
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/python-version-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ jobs:
run: |
python -m pip install --upgrade pip
python -m pip install flake8 pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
if [ -f requirements.txt ]; then
pip install -r requirements.txt
fi
- name: Lint with flake8
run: |
# stop the build if there are Python syntax errors or undefined names
Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

.env
5 changes: 5 additions & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

# v2.0.1
Fix `python-version-check.yml` not running correctly.
Add `.gitignore` as mentioned in previous changelog.
Added `.env` to gitignore.

# v2.0.0
Added dotenv to have environment variables (channed id, bot token) seperate from the main script in the form of a .env file.
This is more for my sake cause i'm an idiot and will end up leaking sensitive info.
Expand Down
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Version: 2.0.0
## Version: 2.0.1
## License: https://github.com/redtrillix/DiscordComputerStatus/raw/main/LICENSE
## Git Repository: https://github.com/redtrillix/DiscordComputerStatus
## Changelog: https://github.com/redtrillix/DiscordComputerStatus/blob/main/CHANGELOG.txt
Expand Down

0 comments on commit 6bf4487

Please sign in to comment.