Skip to content

Commit 8f797c5

Browse files
author
Guillaume "Liam" Petiot
authored
[new release] get-activity (2 packages) (1.0.0) (tarides#10)
CHANGES: ### Added - Add the `--version` command-line option (tarides/get-activity#13, @gpetiot) - Add a `--user` option to extract the activity of an engineer that is not the current user (tarides/get-activity#14, @gpetiot) - Add the issue comments to the contributions (tarides/get-activity#21, @gpetiot) ### Changed - Replace exceptions by result types for the requests (tarides/get-activity#11, @gpetiot) - Depends on `curly` instead of `cohttp-lwt-unix` (tarides/get-activity#12, @gpetiot) - Redesign the graphql requests (tarides/get-activity#12, @gpetiot) + `Graphql.exec` now takes a `request` + `Contributions.fetch` has been replaced by `Contributions.request` that builds a `request` - Add a `~user:User.t` parameter to `Contributions.request` and `Contributions.of_json` (tarides/get-activity#14, @gpetiot) - `Contributions.of_json` now returns a result type (tarides/get-activity#20, @gpetiot)
1 parent a5f48cf commit 8f797c5

File tree

2 files changed

+79
-0
lines changed
  • packages
    • get-activity/get-activity.1.0.0
    • get-activity-lib/get-activity-lib.1.0.0

2 files changed

+79
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
opam-version: "2.0"
2+
synopsis: "Collect activity as markdown"
3+
maintainer: ["Guillaume Petiot <[email protected]>"]
4+
authors: ["[email protected]"]
5+
homepage: "https://github.com/tarides/get-activity"
6+
bug-reports: "https://github.com/tarides/get-activity/issues"
7+
depends: [
8+
"dune" {>= "2.8"}
9+
"alcotest" {with-test}
10+
"ppx_expect" {with-test}
11+
"astring"
12+
"curly"
13+
"fmt" {>= "0.8.7"}
14+
"ppx_yojson_conv"
15+
"yojson" {>= "1.6"}
16+
"ocaml" {>= "4.08"}
17+
"odoc" {with-doc}
18+
]
19+
build: [
20+
["dune" "subst"] {dev}
21+
[
22+
"dune"
23+
"build"
24+
"-p"
25+
name
26+
"-j"
27+
jobs
28+
"@install"
29+
"@runtest" {with-test}
30+
"@doc" {with-doc}
31+
]
32+
]
33+
dev-repo: "git+https://github.com/tarides/get-activity.git"
34+
url {
35+
src:
36+
"https://github.com/tarides/get-activity/releases/download/1.0.0/get-activity-1.0.0.tbz"
37+
checksum: [
38+
"sha256=b072e48bcef89c131108d3bc062c34575497ea8217a4c9f43ec6e89afec8217c"
39+
"sha512=d29bd4435893f791af9dd172a05b6770225926c57a6ab1f0d72108e26b1774bf07c70aada420df7b2c8f3faf70b340da766b606878d5faf87f7d7760925d787f"
40+
]
41+
}
42+
x-commit-hash: "c79ce7802fd17125e06e81acf36c8b6789641c87"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
opam-version: "2.0"
2+
synopsis: "Collect activity as markdown"
3+
maintainer: ["Guillaume Petiot <[email protected]>"]
4+
authors: ["[email protected]"]
5+
homepage: "https://github.com/tarides/get-activity"
6+
bug-reports: "https://github.com/tarides/get-activity/issues"
7+
depends: [
8+
"dune" {>= "2.8"}
9+
"cmdliner" {>= "1.1.1"}
10+
"dune-build-info"
11+
"get-activity-lib" {= version}
12+
"odoc" {with-doc}
13+
]
14+
build: [
15+
["dune" "subst"] {dev}
16+
[
17+
"dune"
18+
"build"
19+
"-p"
20+
name
21+
"-j"
22+
jobs
23+
"@install"
24+
"@runtest" {with-test}
25+
"@doc" {with-doc}
26+
]
27+
]
28+
dev-repo: "git+https://github.com/tarides/get-activity.git"
29+
url {
30+
src:
31+
"https://github.com/tarides/get-activity/releases/download/1.0.0/get-activity-1.0.0.tbz"
32+
checksum: [
33+
"sha256=b072e48bcef89c131108d3bc062c34575497ea8217a4c9f43ec6e89afec8217c"
34+
"sha512=d29bd4435893f791af9dd172a05b6770225926c57a6ab1f0d72108e26b1774bf07c70aada420df7b2c8f3faf70b340da766b606878d5faf87f7d7760925d787f"
35+
]
36+
}
37+
x-commit-hash: "c79ce7802fd17125e06e81acf36c8b6789641c87"

0 commit comments

Comments
 (0)