Skip to content

Commit

Permalink
Merge pull request #3 from elifesciences/0.1.2
Browse files Browse the repository at this point in the history
0.1.2
  • Loading branch information
lsh-0 authored Jul 3, 2023
2 parents 1aa6c55 + 97b67bf commit b1ea4ee
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 1 deletion.
44 changes: 44 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Change Log
All notable changes to this project will be documented in this file. This change log follows the conventions of [keepachangelog.com](http://keepachangelog.com/).

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## 0.1.2

### Fixed

* a pagination bug that lead to indefinite polling.

## 0.1.1

### Fixed

* pagination of organisation alerts.

## 0.1.0

### Added

* support for providing a mapping of projects to maintainers
* manage.sh, added a 'release' task

### Changed

* deps, bumped

## 0.0.1

### Added

* initial release

## [Unreleased]

### Added

### Changed

### Fixed

### Removed
3 changes: 2 additions & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import (
"math"
"net/url"
"os"
"strconv"
"strings"
"time"

Expand Down Expand Up @@ -123,7 +124,7 @@ func fetch_project_alert_map(org_name, token string) map[Project][]Alert {
if resp.NextPage == 0 {
break
}
opts.Cursor = resp.After
opts.Page = strconv.Itoa(resp.NextPage)
}

now := time.Now()
Expand Down

0 comments on commit b1ea4ee

Please sign in to comment.