Skip to content

Commit

Permalink
v0.1.333
Browse files Browse the repository at this point in the history
  • Loading branch information
miku committed Mar 30, 2022
1 parent d54d74b commit 981aedf
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 10 deletions.
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ TARGETS = span-check \

PKGNAME = span

.PHONY: all assets bench clean clean-docs cloc deb deps imports lint members names rpm test vet
.PHONY: all assets bench clean clean-docs cloc deb imports lint members names rpm test vet

# http://docs.travis-ci.com/user/languages/go/#Default-Test-Script
test:
Expand All @@ -32,10 +32,7 @@ test:
go test -v -cover ./...
# go mod tidy

all: deps $(TARGETS)

deps:
go get -v ./...
all: $(TARGETS)

$(TARGETS): %: cmd/%/main.go
go build -ldflags="-w -s -linkmode=external" -o $@ $<
Expand Down
2 changes: 1 addition & 1 deletion common.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ import (

const (
// AppVersion of span package. Commandline tools will show this on -v.
AppVersion = "0.1.332"
AppVersion = "0.1.333"
// KeyLengthLimit was a limit imposed by the memcached protocol, which
// was used for blob storage until Q1 2017. We switched the key-value
// store, so this limit is somewhat obsolete.
Expand Down
2 changes: 1 addition & 1 deletion packaging/arch/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME = span
VERSION = 0.1.332
VERSION = 0.1.333
RELEASE = 0

$(NAME)-$(VERSION)-$(RELEASE)-x86_64.pkg.tar.xz: PKGBUILD
Expand Down
2 changes: 1 addition & 1 deletion packaging/arch/PKGBUILD
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# TODO(miku): Simplify asset handling, make everything simply go-get-able.

pkgname=span
pkgver=0.1.332
pkgver=0.1.333
pkgrel=0
pkgdesc="Project FINC intermediate schema tools."
arch=('i686' 'x86_64')
Expand Down
2 changes: 1 addition & 1 deletion packaging/deb/span/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: span
Version: 0.1.332
Version: 0.1.333
Section: utils
Priority: optional
Architecture: amd64
Expand Down
2 changes: 1 addition & 1 deletion packaging/rpm/span.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: Library data tools.
Name: span
Version: 0.1.332
Version: 0.1.333
Release: 0
License: GPL
ExclusiveArch: x86_64
Expand Down

0 comments on commit 981aedf

Please sign in to comment.