Skip to content
This repository has been archived by the owner on Dec 12, 2021. It is now read-only.

Commit

Permalink
Merge pull request #4 from aw/docs
Browse files Browse the repository at this point in the history
Update dependencies, prepare v1.0.0 Production release
  • Loading branch information
aw committed Jun 14, 2015
2 parents be89c34 + 8b2ca82 commit fc3af5d
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 1.0.0 (2015-06-11)

* Production release

## 0.4.1 (2015-05-20)

* Update picolisp-unit to v0.6.2
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -6,7 +6,7 @@ PIL_SYMLINK_DIR ?= .lib
## Edit below
BUILD_REPO = https://github.com/rg3/bcrypt.git
BUILD_DIR = $(PIL_MODULE_DIR)/bcrypt/HEAD
BUILD_REF = 3abaecaadc
BUILD_REF = b1e3dea0a1
TARGET = libbcrypt.so
FILES = bcrypt.c crypt_blowfish/crypt_blowfish.c crypt_blowfish/crypt_gensalt.c crypt_blowfish/wrapper.c
INCLUDES = -I. -Icrypt_blowfish/
Expand Down
2 changes: 1 addition & 1 deletion README.md
@@ -1,6 +1,6 @@
# bcrypt hashing for PicoLisp

[![GitHub release](https://img.shields.io/github/release/aw/picolisp-bcrypt.svg)](https://img.shields.io/github/release/aw/picolisp-bcrypt) [![Build Status](https://travis-ci.org/aw/picolisp-bcrypt.svg?branch=master)](https://travis-ci.org/aw/picolisp-bcrypt) [![Dependency](https://img.shields.io/badge/[deps] bcrypt-3abaecaadc-ff69b4.svg)](https://github.com/rg3/bcrypt.git) [![Dependency](https://img.shields.io/badge/[deps] picolisp--unit-v0.6.2-ff69b4.svg)](https://github.com/aw/picolisp-unit.git)
[![GitHub release](https://img.shields.io/github/release/aw/picolisp-bcrypt.svg)](https://img.shields.io/github/release/aw/picolisp-bcrypt) [![Build Status](https://travis-ci.org/aw/picolisp-bcrypt.svg?branch=master)](https://travis-ci.org/aw/picolisp-bcrypt) [![Dependency](https://img.shields.io/badge/[deps] bcrypt-b1e3dea0a1-ff69b4.svg)](https://github.com/rg3/bcrypt.git) [![Dependency](https://img.shields.io/badge/[deps] picolisp--unit-v1.0.0-ff69b4.svg)](https://github.com/aw/picolisp-unit.git)

This library can be used to hash strings (ex: passwords) using bcrypt in [PicoLisp](http://picolisp.com/).

Expand Down
6 changes: 3 additions & 3 deletions module.l
@@ -1,12 +1,12 @@
[de MODULE_INFO
("name" "bcrypt")
("version" "0.4.1")
("version" "1.0.0")
("summary" "bcrypt hashing for PicoLisp")
("source" "https://github.com/aw/picolisp-bcrypt.git")
("author" "Alexander Williams")
("license" "MIT")
("copyright" "(c) 2015 Alexander Williams, Unscramble <license@unscramble.jp>")
("install" "make")
("requires"
("bcrypt" "3abaecaadc" "https://github.com/rg3/bcrypt.git")
("picolisp-unit" "v0.6.2" "https://github.com/aw/picolisp-unit.git") ]
("bcrypt" "b1e3dea0a1" "https://github.com/rg3/bcrypt.git")
("picolisp-unit" "v1.0.0" "https://github.com/aw/picolisp-unit.git") ]

0 comments on commit fc3af5d

Please sign in to comment.