Skip to content

Commit

Permalink
Final tweaks before uploading
Browse files Browse the repository at this point in the history
  • Loading branch information
Jordan Mackie committed Nov 30, 2020
1 parent d26ffa0 commit c1315e5
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 4 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
All notable changes to this project will be documented in this file.

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
and this project adheres to the [Haskell Package Versioning Policy](https://pvp.haskell.org/).

## [0.1.0] - 2020-11-29
## [0.1.0.0] - 2020-11-29

First cabal release 🎉🥳
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,20 @@
# `kesha`

[![CI](https://github.com/jmackie/kesha/workflows/CI/badge.svg)](https://github.com/jmackie/kesha/actions?query=workflow%3ACI)
[![Hackage](https://img.shields.io/hackage/v/kesha-0.1.0)](https://hackage.haskell.org/package/kesha-0.1.0/candidate)
[![Hackage](https://img.shields.io/hackage/v/kesha)](https://hackage.haskell.org/package/kesha)

A Haskell library for computing the cryptographic hash of any path.

The implementation is an almost verbatim implementation of `nix-hash`, which is the
standard tool used by the [Nix](https://nixos.org/nix/) package manager.

```haskell
module Main where

import qualified Kesha

main :: IO ()
main = do
result <- Kesha.hash "some-path"
print result
```
2 changes: 1 addition & 1 deletion kesha.cabal
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cabal-version: >= 1.10

name: kesha
version: 0.1.0
version: 0.1.0.0
synopsis: Haskell implementation of nix-hash
description: Compute the cryptographic hash of a path, à la <https://nixos.org/ Nix>.
homepage: https://github.com/jmackie/kesha
Expand Down

0 comments on commit c1315e5

Please sign in to comment.