Skip to content

Commit 9f36c64

Browse files
committed
readme: 0.5.2
1 parent b545901 commit 9f36c64

5 files changed

Lines changed: 23 additions & 4 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
</p>
44

55
[![GoDoc](https://img.shields.io/badge/GoDoc-Reference-blue?style=for-the-badge&logo=go)](https://pkg.go.dev/github.com/go-olive/olive?tab=doc)
6-
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/go-olive/olive/release.yml?branch=v0.5.0&style=for-the-badge)](https://github.com/go-olive/olive/actions/workflows/release.yml)
6+
[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/go-olive/olive/release.yml?branch=v0.5.2&style=for-the-badge)](https://github.com/go-olive/olive/actions/workflows/release.yml)
77
[![Sourcegraph](https://img.shields.io/badge/view%20on-SG-brightgreen.svg?style=for-the-badge&logo=sourcegraph)](https://sourcegraph.com/github.com/go-olive/olive)
88
[![Github All Releases](https://img.shields.io/github/downloads/go-olive/olive/total.svg?style=for-the-badge)](https://github.com/go-olive/olive/releases)
99
[![QQGroup](https://img.shields.io/:QQ%20Group-735124170-brightgreen.svg?style=for-the-badge)](https://qm.qq.com/cgi-bin/qm/qr?k=c6CTyYkB-p-o8ZoT5ldcjuFAVnyu5vEL&jump_from=webapi)

command/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"github.com/spf13/cobra"
77
)
88

9-
var build = "v0.5.1-src"
9+
var build = "v0.5.2-src"
1010

1111
var _ cmder = (*versionCmd)(nil)
1212

foundation/biliup/cmd/main.go

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
package main
2+
3+
import (
4+
"fmt"
5+
6+
"github.com/go-olive/olive/foundation/biliup"
7+
)
8+
9+
func main() {
10+
err := biliup.New(biliup.Config{
11+
CookieFilepath: "/cookies.json",
12+
VideoFilepath: `/test.flv`,
13+
Threads: 2,
14+
MaxBytesPerSecond: 2097152,
15+
}).Upload()
16+
if err != nil {
17+
fmt.Println(err)
18+
}
19+
}

makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ SHELL := /bin/bash
33
# ==============================================================================
44
# Building containers
55

6-
VERSION := 0.5.1
6+
VERSION := 0.5.2
77

88
all: olivectl
99

zarf/k8s/kind/olive-pod/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ patchesStrategicMerge:
88
images:
99
- name: olive-api-image
1010
newName: olive-api-arm64
11-
newTag: 0.5.1
11+
newTag: 0.5.2

0 commit comments

Comments
 (0)