Skip to content

Commit

Permalink
1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Sam Schick committed Jun 16, 2022
1 parent 5711a75 commit 48045f2
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
## [1.0.0]
### Added
- Make requests from plain text files
- Optionally display response headers as well as body
- Optionally return failing exit code based on HTTP response code
7 changes: 4 additions & 3 deletions dune-project
Original file line number Diff line number Diff line change
Expand Up @@ -4,20 +4,21 @@

(generate_opam_files true)

; (source
; (github schicksw/req))
(source
(github schicks/req))

(authors "Sam Schick")

(maintainers "Sam Schick")

(license LICENSE)
(license MIT)

; (documentation https://url/to/documentation)
(cram enable)

(package
(name req)
(version 1.0.0)
(synopsis "A curl like tool that can run requests from files")
(description
"I like saving requests to files so that I can version them and iterate on them. I don't like having to download and install Postman just to make HTTP requests. `req` makes HTTP requests from files following the [HTTP standard](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html) so I can pipe the results right into other tools.")
Expand Down
6 changes: 5 additions & 1 deletion req.opam
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# This file is generated by dune, edit dune-project instead
opam-version: "2.0"
version: "1.0.0"
synopsis: "A curl like tool that can run requests from files"
description:
"I like saving requests to files so that I can version them and iterate on them. I don't like having to download and install Postman just to make HTTP requests. `req` makes HTTP requests from files following the [HTTP standard](https://www.w3.org/Protocols/rfc2616/rfc2616-sec5.html) so I can pipe the results right into other tools."
maintainer: ["Sam Schick"]
authors: ["Sam Schick"]
license: "LICENSE"
license: "MIT"
tags: ["cli" "curl" "http"]
homepage: "https://github.com/schicks/req"
bug-reports: "https://github.com/schicks/req/issues"
depends: [
"ocaml"
"dune" {>= "3.2"}
Expand All @@ -33,3 +36,4 @@ build: [
"@doc" {with-doc}
]
]
dev-repo: "git+https://github.com/schicks/req.git"

0 comments on commit 48045f2

Please sign in to comment.