Skip to content
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@

Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.

## [0.1.0b0] - 2021-05-07
### Added
+ First beta release


## [0.1.0a1] - 2021-04-30
### Added
+ Added GitHub Action release process
+ Added `lab` schema


[0.1.0b0]: https://github.com/datajoint/element-lab/compare/0.1.0a1...0.1.0b0
[0.1.0a1]: https://github.com/datajoint/element-lab/releases/tag/0.1.0a1
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ Element Lab contains lab related information, such as Lab, User, Project, Protoc

See [Background](Background.md) for the background information and development timeline.

## Installation
```
pip install element-lab
```

If you already have an older version of ***element-lab*** installed using `pip`, upgrade with
```
pip install --upgrade element-lab
```

## Element usage

+ `element-lab` is not a complete workflow by itself, but rather a modular design of tables and dependencies that can be flexibly attached to any DataJoint workflow.
Expand All @@ -14,3 +24,4 @@ See [Background](Background.md) for the background information and development t
## Element architecture

![element lab diagram](images/element_lab_diagram.svg)

2 changes: 1 addition & 1 deletion element_lab/version.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
"""Package metadata."""
__version__ = '0.1.0a1'
__version__ = '0.1.0b0'
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from setuptools import setup, find_packages
from os import path

pkg_name = [p for p in find_packages() if '.' not in p][0]
pkg_name = next(p for p in find_packages() if '.' not in p)
here = path.abspath(path.dirname(__file__))

with open(path.join(here, 'README.md'), 'r') as f:
Expand Down