Skip to content

Commit

Permalink
readme: 0.5.2
Browse files Browse the repository at this point in the history
  • Loading branch information
luxcgo committed May 17, 2023
1 parent b545901 commit 9f36c64
Show file tree
Hide file tree
Showing 5 changed files with 23 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
</p>

[![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)
[![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)
[![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)
[![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)
[![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)
[![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)
Expand Down
2 changes: 1 addition & 1 deletion command/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"github.com/spf13/cobra"
)

var build = "v0.5.1-src"
var build = "v0.5.2-src"

var _ cmder = (*versionCmd)(nil)

Expand Down
19 changes: 19 additions & 0 deletions foundation/biliup/cmd/main.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package main

import (
"fmt"

"github.com/go-olive/olive/foundation/biliup"
)

func main() {
err := biliup.New(biliup.Config{
CookieFilepath: "/cookies.json",
VideoFilepath: `/test.flv`,
Threads: 2,
MaxBytesPerSecond: 2097152,
}).Upload()
if err != nil {
fmt.Println(err)
}
}
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ SHELL := /bin/bash
# ==============================================================================
# Building containers

VERSION := 0.5.1
VERSION := 0.5.2

all: olivectl

Expand Down
2 changes: 1 addition & 1 deletion zarf/k8s/kind/olive-pod/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ patchesStrategicMerge:
images:
- name: olive-api-image
newName: olive-api-arm64
newTag: 0.5.1
newTag: 0.5.2

0 comments on commit 9f36c64

Please sign in to comment.