Commit 62d99086 authored by Andrei Mihu's avatar Andrei Mihu
Browse files

CRON expression library fixes. (#295)

parent 9895dd03
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -4,6 +4,8 @@ All notable changes to this project are documented below.
The format is based on [keep a changelog](http://keepachangelog.com) and this project uses [semantic versioning](http://semver.org).

## [Unreleased]
### Fixed
- CRON expressions for leaderboard and tournament resets now allow concurrent processing.

## [2.4.0] - 2019-02-03
### Added
+0 −8
Original line number Diff line number Diff line
@@ -300,13 +300,6 @@
  revision = "c8a15bac9b9fe955bd9f900272f9a306465d28cf"
  version = "v2.0.3"

[[projects]]
  digest = "1:bbd196e39a1bf00c8dcff1d3171aa0fd39407a9ad4f006a47e6e248492832967"
  name = "github.com/gorhill/cronexpr"
  packages = ["."]
  pruneopts = ""
  revision = "88b0669f7d75f171bd612b874e52b95c190218df"

[[projects]]
  digest = "1:dbbeb8ddb0be949954c8157ee8439c2adfd8dc1c9510eb44a6e58cb68c3dce28"
  name = "github.com/gorilla/context"
@@ -805,7 +798,6 @@
    "github.com/golang/protobuf/ptypes/empty",
    "github.com/golang/protobuf/ptypes/timestamp",
    "github.com/golang/protobuf/ptypes/wrappers",
    "github.com/gorhill/cronexpr",
    "github.com/gorilla/handlers",
    "github.com/gorilla/mux",
    "github.com/gorilla/websocket",
+0 −4
Original line number Diff line number Diff line
@@ -56,10 +56,6 @@ ignored = ["go.opencensus.io/exporter/stackdriver"]
  name = "github.com/yuin/gopher-lua"
  revision = "1e6e6e1918e02ddf02e667e88e8aa756942448c5"

[[constraint]]
  name = "github.com/gorhill/cronexpr"
  revision = "88b0669f7d75f171bd612b874e52b95c190218df"

[[constraint]]
  name = "golang.org/x/crypto"
  revision = "505ab145d0a99da450461ae2c1a9f6cd10d1f447"
Loading