Skip to content

Commit

Permalink
Updates for v0.2.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JCapul committed May 24, 2019
1 parent 2f9e3db commit 418f7f1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## vO.2.1

- Fix a memory corruption issue by passing a copy of pathnames from C to Go [2f9e3db]
- Update README.md [f893f1e]
- Add file metadata caching in client [0a098e0]

## v0.2.0

- Add Spack package for pdwfs [b6cb1f2]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ A binary distribution is available for Linux system and x86_64 architecture in t
The following steps will install pdwfs and make it available in your PATH.

```bash
$ wget -O pdwfs.tar.gz https://github.com/cea-hpc/pdwfs/releases/download/v0.2.0/pdwfs-v0.2.0-linux-amd64.tar.gz
$ wget -O pdwfs.tar.gz https://github.com/cea-hpc/pdwfs/releases/download/v0.2.1/pdwfs-v0.2.1-linux-amd64.tar.gz
$ mkdir /usr/local/pdwfs
$ tar xf pdwfs.tar.gz --strip-component=1 -C /usr/local/pdwfs
$ export PATH="/usr/local/pdwfs/bin:$PATH"
Expand All @@ -51,14 +51,14 @@ pdwfs and its dependencies (Redis and Go) can be installed with the package mana

NOTE: at the time of this writing, the latest Spack release (v0.12.1) does not have the Redis package, it is only available in the develop branch. Still, the Redis package python file can easily be copy-pasted in your Spack installation.

A Spack package for pdwfs is not yet available in Spack upstream repository, but is available [here](https://github.com/cea-hpc/pdwfs/releases/download/v0.2.0/pdwfs-spack.py).
A Spack package for pdwfs is not yet available in Spack upstream repository, but is available [here](https://github.com/cea-hpc/pdwfs/releases/download/v0.2.1/pdwfs-spack.py).

To add pdwfs package to your Spack installation, you can proceed as follows:

```bash
$ export DIR=$SPACK_ROOT/var/spack/repos/builtin/pdwfs
$ mkdir $DIR
$ wget -O $DIR/package.py https://github.com/cea-hpc/pdwfs/releases/download/v0.2.0/pdwfs-spack.py
$ wget -O $DIR/package.py https://github.com/cea-hpc/pdwfs/releases/download/v0.2.1/pdwfs-spack.py
$ spack spec pdwfs # check everything is OK
```

Expand Down

0 comments on commit 418f7f1

Please sign in to comment.