Skip to content

Commit d78ae67

Browse files
committed
Release 1.2
1 parent cb01dce commit d78ae67

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ RUN apk add --no-cache python3 py3-pip ffmpeg \
1818
&& python3 -m pip install --upgrade pyrogram \
1919
&& python3 -m pip install --upgrade TgCrypto
2020
WORKDIR /app
21-
COPY --from=builder /usr/src/java-code/build/libs/ffmpegbot-1.1.1-SNAPSHOT-all.jar .
21+
COPY --from=builder /usr/src/java-code/build/libs/ffmpegbot-1.2-SNAPSHOT-all.jar .
2222
RUN mkdir input && mkdir output
2323
COPY pytgfile.py .
2424
COPY ffmpegbot-docker.yaml .
25-
ENTRYPOINT ["java", "-jar", "/app/ffmpegbot-1.1.1-SNAPSHOT-all.jar", "docker"]
25+
ENTRYPOINT ["java", "-jar", "/app/ffmpegbot-1.2-SNAPSHOT-all.jar", "docker"]

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ cp ffmpegbot.yaml.template ffmpegbot.yaml
3030
vim ffmpegbot.yaml
3131
mkdir {input,output}
3232
# Run
33-
java -jar ./build/libs/ffmpegbot-1.1.1-SNAPSHOT-all.jar
33+
java -jar ./build/libs/ffmpegbot-1.2-SNAPSHOT-all.jar
3434
```
3535

3636

build.gradle

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ plugins {
66

77
mainClassName = 'com.annimon.ffmpegbot.Main'
88
group 'com.annimon'
9-
version '1.1.1-SNAPSHOT'
9+
version '1.2-SNAPSHOT'
1010

1111
sourceCompatibility = 17
1212
targetCompatibility = 17
@@ -21,7 +21,9 @@ repositories {
2121
}
2222

2323
dependencies {
24-
implementation 'com.annimon:tgbots-module:7.6.0'
24+
implementation ('com.annimon:tgbots-module:7.7.0') {
25+
exclude group: 'org.telegram', module: 'telegrambots-webhook'
26+
}
2527
implementation 'org.slf4j:slf4j-simple:2.0.13'
2628
}
2729

0 commit comments

Comments
 (0)