increment version for next release

This commit is contained in:
mykola2312 2024-03-16 13:36:38 +02:00
parent 3075a1c13e
commit 89d7952b16
5 changed files with 4 additions and 5 deletions

2
Cargo.lock generated
View file

@ -1080,7 +1080,7 @@ dependencies = [
[[package]]
name = "mk-dl-bot"
version = "0.1.1"
version = "0.2.0"
dependencies = [
"anyhow",
"dotenv",

View file

@ -1,6 +1,6 @@
[package]
name = "mk-dl-bot"
version = "0.1.1"
version = "0.2.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

2
Jenkinsfile vendored
View file

@ -13,7 +13,7 @@ node {
stage('Push') {
docker.withRegistry('https://registry.hub.docker.com', 'a2aa5264-dce1-4054-8828-8db95e3c6c3c') {
app.push('v0.1.1')
app.push('v0.2.0')
}
}

View file

@ -19,7 +19,7 @@ spec:
service: bot
spec:
containers:
- image: mykola2312/mk-dl-bot:v0.1.1
- image: mykola2312/mk-dl-bot:v0.2.0
name: bot
envFrom:
- secretRef:

View file

@ -133,7 +133,6 @@ enum Command {
async fn cmd_test(bot: Bot, msg: Message, _db: DbPool) -> HandlerResult {
//bot.send_message(msg.chat.id, t!("test_response")).await?;
bot.send_video(msg.chat.id, InputFile::url(Url::from_str("http://mkdlbot.ddns.net/output3.mp4")?)).await?;
Ok(())
}