Skip to content

Commit ad64056

Browse files
committed
[Version] v1.2.1
1 parent b1854cd commit ad64056

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: ubuntu-latest - Docker - lint
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v5
1616

1717
- name: Run hadolint
1818
uses: reviewdog/action-hadolint@v1
@@ -26,7 +26,7 @@ jobs:
2626
runs-on: ubuntu-latest
2727

2828
steps:
29-
- uses: actions/checkout@v3
29+
- uses: actions/checkout@v5
3030

3131
- name: Set Environment Variables
3232
run: |
@@ -53,7 +53,7 @@ jobs:
5353
use: true
5454

5555
- name: Cache Docker layers
56-
uses: actions/cache@v2
56+
uses: actions/cache@v4
5757
with:
5858
path: /tmp/.buildx-cache
5959
key: ${{ runner.os }}-buildx-${{ github.sha }}

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [1.2.1] - 2024-10-24
8+
### Updated
9+
- remove non spot symbols from detection
10+
711
## [1.2.0] - 2024-10-24
812
### Added
913
- cycle detection by @ruidazeng

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
REQUIRES_PYTHON = '>=3.10'
1818

1919
setup(
20-
name=PROJECT_NAME,
20+
name=PROJECT_NAME.lower().replace("-", "_"),
2121
version=VERSION,
2222
url='https://github.com/Drakkar-Software/Triangular-Arbitrage',
2323
author='Drakkar-Software',

triangular_arbitrage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
PROJECT_NAME = "OctoBot-Triangular-Arbitrage"
2-
VERSION = "1.2.0"
2+
VERSION = "1.2.1"

0 commit comments

Comments
 (0)