Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adjust dep bounds #2

Merged
merged 2 commits into from
Jan 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions ChangeLog.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

`mem-info` uses [PVP Versioning][1].

## 0.1.0.1 -- 2024-01-17

- Adjusted dependency bounds to remove any stale dependencies

## 0.1.0.0 -- 2024-01-16

* Initial version.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ E.g, the following commands should suffice
```bash
$ # choose a directory on your PATH; this example uses ${HOME}/.local/bin
$ my_local_bin=${HOME}/.local/bin/printmem
$ release_url="https://github.com/adetokunbo/mem-info/releases/download/v0.1.0.0/printmem"
$ release_url="https://github.com/adetokunbo/mem-info/releases/download/v0.1.0.1/printmem"
$ # download it
$ wget -O $my_local_bin $release_url
$ # make it executable
Expand Down
6 changes: 3 additions & 3 deletions mem-info.cabal
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cabal-version: 3.0
name: mem-info
version: 0.1.0.0
version: 0.1.0.1
synopsis: Print the core memory usage of programs
description:
A utility to accurately report the core memory usage of programs.
Expand Down Expand Up @@ -45,7 +45,7 @@ library
hs-source-dirs: src
build-depends:
, base >=4.10 && <5
, bytestring >=0.11.4 && <0.12
, bytestring >=0.10.8.2 && <0.11 || >=0.11.3.1 && <0.12.1
, containers >=0.6.5 && <0.8
, directory >=1.3.6 && <1.5
, filepath >=1.4.2 && <1.6
Expand Down Expand Up @@ -81,7 +81,7 @@ test-suite test
, genvalidity-text
, hashable
, mem-info
, hspec >=2.1 && <2.11
, hspec
, QuickCheck
, text
, unix
Expand Down
Loading