forked from tarides/opam-repository
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[new release] get-activity (2 packages) (2.0.0)
CHANGES: ### Fixed - Take into account the end date of the specified period when filtering github activity (tarides/get-activity#31, @gpetiot) ### Changed - API: `Contributions.of_json` parameter `~from` is replaced by `~period` (tarides/get-activity#31, @gpetiot) - Distinguish between issue comments and PR comments (tarides/get-activity#38, @gpetiot) API: new constructor `Comment` replacing `Issue_comment` ### Added - Display curl requests and responses in debug mode (`-vv` or `--verbosity debug`) (tarides/get-activity#36, @gpetiot) - Add the PR merge events to the contributions (tarides/get-activity#37, @emillon, @gpetiot) API: new constructor `Merge`
- Loading branch information
Showing
2 changed files
with
82 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
opam-version: "2.0" | ||
synopsis: "Collect activity as markdown" | ||
maintainer: ["Guillaume Petiot <[email protected]>"] | ||
authors: ["[email protected]"] | ||
homepage: "https://github.com/tarides/get-activity" | ||
bug-reports: "https://github.com/tarides/get-activity/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"alcotest" {with-test} | ||
"ppx_expect" {with-test} | ||
"astring" | ||
"curly" | ||
"fmt" {>= "0.8.7"} | ||
"logs" | ||
"ppx_yojson_conv" | ||
"yojson" {>= "1.6"} | ||
"ocaml" {>= "4.08"} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/tarides/get-activity.git" | ||
url { | ||
src: | ||
"https://github.com/tarides/get-activity/releases/download/2.0.0/get-activity-2.0.0.tbz" | ||
checksum: [ | ||
"sha256=81126cfee494a96f6d25e931112cd8d75f0940af40c95f411c644d86a6bcbda2" | ||
"sha512=6844c49cd671654420f34e77cefa783092b088dfb34376a4424b872925439922bec294d336a3c109681ed7155beb96d2716e4551c10c05d232fdc8ae79336c3f" | ||
] | ||
} | ||
x-commit-hash: "c3865ada8eeac490a79ca32f3d887604f7822a1c" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
opam-version: "2.0" | ||
synopsis: "Collect activity as markdown" | ||
maintainer: ["Guillaume Petiot <[email protected]>"] | ||
authors: ["[email protected]"] | ||
homepage: "https://github.com/tarides/get-activity" | ||
bug-reports: "https://github.com/tarides/get-activity/issues" | ||
depends: [ | ||
"dune" {>= "2.8"} | ||
"cmdliner" {>= "1.1.1"} | ||
"dune-build-info" | ||
"fmt" | ||
"logs" | ||
"get-activity-lib" {= version} | ||
"odoc" {with-doc} | ||
] | ||
build: [ | ||
["dune" "subst"] {dev} | ||
[ | ||
"dune" | ||
"build" | ||
"-p" | ||
name | ||
"-j" | ||
jobs | ||
"@install" | ||
"@runtest" {with-test} | ||
"@doc" {with-doc} | ||
] | ||
] | ||
dev-repo: "git+https://github.com/tarides/get-activity.git" | ||
url { | ||
src: | ||
"https://github.com/tarides/get-activity/releases/download/2.0.0/get-activity-2.0.0.tbz" | ||
checksum: [ | ||
"sha256=81126cfee494a96f6d25e931112cd8d75f0940af40c95f411c644d86a6bcbda2" | ||
"sha512=6844c49cd671654420f34e77cefa783092b088dfb34376a4424b872925439922bec294d336a3c109681ed7155beb96d2716e4551c10c05d232fdc8ae79336c3f" | ||
] | ||
} | ||
x-commit-hash: "c3865ada8eeac490a79ca32f3d887604f7822a1c" |