Skip to content

Commit

Permalink
Bump version to v1.4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ameshkov committed Feb 7, 2024
1 parent 3017600 commit 1c1070a
Show file tree
Hide file tree
Showing 2 changed files with 39 additions and 27 deletions.
50 changes: 30 additions & 20 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,14 @@ adheres to [Semantic Versioning][semver].

## [Unreleased]

[unreleased]: https://github.com/ameshkov/gocurl/compare/v1.4.1...HEAD

## [1.4.1] - 2024-02-07

### Added

* Added support for `--ipv4` and `--ipv6` arguments. ([#25][#25])
* Added Docker image for `gocurl`.
* Added [a Docker image][dockerimage] for `gocurl`.

### Fixed

Expand All @@ -23,27 +27,33 @@ adheres to [Semantic Versioning][semver].
* Fixed unnecessary warning `connection doesn't allow setting of receive buffer
size` when HTTP/3 is used.

[See changes][1.4.1changes].

[1.4.1changes]: https://github.com/ameshkov/gocurl/compare/v1.4.0...v1.4.1

[1.4.1]: https://github.com/ameshkov/gocurl/releases/tag/v1.4.1

[dockerimage]: https://github.com/ameshkov/gocurl/pkgs/container/gocurl

[#25]: https://github.com/ameshkov/gocurl/issues/25

[#26]: https://github.com/ameshkov/gocurl/issues/26

[unreleased]: https://github.com/ameshkov/gocurl/compare/v1.4.0...HEAD

## [1.4.0] - 2024-02-24
## [1.4.0] - 2024-02-04

### Added

* Added initial WebSocket support. `gocurl` now supports `ws://` and `wss://`
URLs. `-d` can be used to specify initial data to send. ([#17][#17])

[#17]: https://github.com/ameshkov/gocurl/issues/17

[See changes][1.4.0changes].

[1.4.0changes]: https://github.com/ameshkov/gocurl/compare/v1.3.0...v1.4.0

[1.4.0]: https://github.com/ameshkov/gocurl/releases/tag/v1.4.0

[#17]: https://github.com/ameshkov/gocurl/issues/17

## [1.3.0] - 2023-09-23

### Added
Expand All @@ -61,14 +71,14 @@ adheres to [Semantic Versioning][semver].

[See changes][1.3.0changes].

[#14]: https://github.com/ameshkov/gocurl/issues/14

[#15]: https://github.com/ameshkov/gocurl/issues/15

[1.3.0changes]: https://github.com/ameshkov/gocurl/compare/v1.2.0...v1.3.0

[1.3.0]: https://github.com/ameshkov/gocurl/releases/tag/v1.3.0

[#14]: https://github.com/ameshkov/gocurl/issues/14

[#15]: https://github.com/ameshkov/gocurl/issues/15

## [1.2.0] - 2023-09-22

### Added
Expand All @@ -85,14 +95,14 @@ adheres to [Semantic Versioning][semver].

[See changes][1.2.0changes].

[#6]: https://github.com/ameshkov/gocurl/issues/6

[#8]: https://github.com/ameshkov/gocurl/issues/8

[1.2.0changes]: https://github.com/ameshkov/gocurl/compare/v1.1.0...v1.2.0

[1.2.0]: https://github.com/ameshkov/gocurl/releases/tag/v1.2.0

[#6]: https://github.com/ameshkov/gocurl/issues/6

[#8]: https://github.com/ameshkov/gocurl/issues/8

## [1.1.0] - 2023-09-21

### Added
Expand All @@ -105,14 +115,14 @@ adheres to [Semantic Versioning][semver].

[See changes][1.1.0changes].

[#3]: https://github.com/ameshkov/gocurl/issues/3

[#5]: https://github.com/ameshkov/gocurl/issues/5

[1.1.0changes]: https://github.com/ameshkov/gocurl/compare/v1.0.6...v1.1.0

[1.1.0]: https://github.com/ameshkov/gocurl/releases/tag/v1.1.0

[#3]: https://github.com/ameshkov/gocurl/issues/3

[#5]: https://github.com/ameshkov/gocurl/issues/5

## [1.0.6] - 2023-09-17

### Added
Expand All @@ -121,12 +131,12 @@ adheres to [Semantic Versioning][semver].

[See changes][1.0.6changes].

[#1]: https://github.com/ameshkov/gocurl/issues/1

[1.0.6changes]: https://github.com/ameshkov/gocurl/compare/v1.0.5...v1.0.6

[1.0.6]: https://github.com/ameshkov/gocurl/releases/tag/v1.0.6

[#1]: https://github.com/ameshkov/gocurl/issues/1

## [1.0.5] - 2023-09-15

### Added
Expand Down
16 changes: 9 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,15 @@ Unfortunately, curl is a bit too huge for that now.
```shell
go install github.com/ameshkov/gocurl@latest
```
* You can get a binary from
the [releases page](https://github.com/ameshkov/gocurl/releases).
* You can use [a Docker image][dockerimage]:
```shell
docker run --rm ghcr.io/ameshkov/gocurl --help
```
* You can get a binary from the [releases page][releases].

[dockerimage]: https://github.com/ameshkov/gocurl/pkgs/container/gocurl

[releases]: https://github.com/ameshkov/gocurl/releases

<a id="howtouse"></a>

Expand All @@ -71,11 +78,6 @@ Use it the same way you use original curl.
https://httpbin.agrd.workers.dev/head` resolve the hostname to the specified
IP address. Note, that unlike `curl`, `gocurl` ignores port in this option.

Alternatively, you can use the Docker image:
```shell
docker run --rm ghcr.io/ameshkov/gocurl --help
```

<a id="newstuff"></a>

### New stuff
Expand Down

0 comments on commit 1c1070a

Please sign in to comment.