Skip to content

Commit 025489f

Browse files
authored
Merge pull request #443 from redhat-performance/development
Development->Master
2 parents 18e4efc + 65b9b3f commit 025489f

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apk add build-base
1010
RUN pip install --upgrade pip
1111
RUN pip install --no-cache-dir -r requirements.txt
1212
RUN python -m build
13-
RUN python -m pip install dist/badfish-1.0.2.tar.gz
13+
RUN python -m pip install dist/badfish-1.0.3.tar.gz
1414

1515
ENTRYPOINT ["badfish"]
1616
CMD ["-v"]

Dockerfile_dev

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ RUN apk add build-base
1212
RUN pip install --upgrade pip
1313
RUN pip install -r requirements.txt
1414
RUN python -m build
15-
RUN python -m pip install dist/badfish-1.0.2.tar.gz
15+
RUN python -m pip install dist/badfish-1.0.3.tar.gz
1616

1717
ENTRYPOINT ["badfish"]
1818
CMD ["-v"]

Dockerfile_local

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN apk add build-base
1010
RUN pip install --upgrade pip
1111
RUN pip install --no-cache-dir -r requirements.txt
1212
RUN python -m build
13-
RUN python -m pip install dist/badfish-1.0.2.tar.gz
13+
RUN python -m pip install dist/badfish-1.0.3.tar.gz
1414

1515
ENTRYPOINT ["badfish"]
1616
CMD ["-v"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ Active releases:
144144
git clone https://github.com/redhat-performance/badfish && cd badfish
145145
python3 -m pip install --upgrade build
146146
python3 -m build
147-
python3 -m pip install dist/badfish-1.0.2.tar.gz
147+
python3 -m pip install dist/badfish-1.0.3.tar.gz
148148
```
149149
NOTE:
150150

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import setuptools
22

33
setuptools.setup(
4-
version="1.0.2"
4+
version="1.0.3"
55
)

0 commit comments

Comments
 (0)