Skip to content

Commit 1d41e95

Browse files
authored
Merge pull request #10 from ttngu207/main
beta 0 release
2 parents df27ec0 + c5df943 commit 1d41e95

File tree

4 files changed

+20
-2
lines changed

4 files changed

+20
-2
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,16 @@
22

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

5+
## [0.1.0b0] - 2021-05-07
6+
### Added
7+
+ First beta release
8+
9+
510
## [0.1.0a1] - 2021-04-30
611
### Added
712
+ Added GitHub Action release process
813
+ Added `lab` schema
914

15+
16+
[0.1.0b0]: https://github.com/datajoint/element-lab/compare/0.1.0a1...0.1.0b0
1017
[0.1.0a1]: https://github.com/datajoint/element-lab/releases/tag/0.1.0a1

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,16 @@ Element Lab contains lab related information, such as Lab, User, Project, Protoc
44

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

7+
## Installation
8+
```
9+
pip install element-lab
10+
```
11+
12+
If you already have an older version of ***element-lab*** installed using `pip`, upgrade with
13+
```
14+
pip install --upgrade element-lab
15+
```
16+
717
## Element usage
818

919
+ `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.
@@ -14,3 +24,4 @@ See [Background](Background.md) for the background information and development t
1424
## Element architecture
1525

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

element_lab/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
"""Package metadata."""
2-
__version__ = '0.1.0a1'
2+
__version__ = '0.1.0b0'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
from setuptools import setup, find_packages
22
from os import path
33

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

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

0 commit comments

Comments
 (0)