Skip to content

Commit f5ed9fd

Browse files
authored
Merge branch 'datajoint:master' into multi-table-insert
2 parents 09f6cff + dafb069 commit f5ed9fd

File tree

4 files changed

+17
-5
lines changed

4 files changed

+17
-5
lines changed

.github/workflows/development.yaml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,8 @@ jobs:
127127
startsWith(github.ref, 'refs/tags') &&
128128
(
129129
github.repository_owner == 'datajoint' ||
130-
github.repository_owner == 'vathes'
130+
github.repository_owner == 'datajoint-company' ||
131+
github.repository_owner == 'dj-sciops'
131132
)
132133
needs: test
133134
runs-on: ubuntu-latest
@@ -212,7 +213,8 @@ jobs:
212213
startsWith(github.ref, 'refs/tags') &&
213214
(
214215
github.repository_owner == 'datajoint' ||
215-
github.repository_owner == 'vathes'
216+
github.repository_owner == 'datajoint-company' ||
217+
github.repository_owner == 'dj-sciops'
216218
)
217219
needs: publish-release
218220
runs-on: ubuntu-latest
@@ -270,7 +272,8 @@ jobs:
270272
startsWith(github.ref, 'refs/tags') &&
271273
(
272274
github.repository_owner == 'datajoint' ||
273-
github.repository_owner == 'vathes'
275+
github.repository_owner == 'datajoint-company' ||
276+
github.repository_owner == 'dj-sciops'
274277
)
275278
needs: publish-release
276279
runs-on: ubuntu-latest

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
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.5.0] - 2022-09-21
6+
### Fixed
7+
- Bugs with returning UUID and NaN values PR #128
8+
9+
### Added
10+
- Support schemas with a `-` by specifying instead with `__` in dynamic spec PR #128
11+
- Support for new `antd-table` component. Prior `table` component will be deprecated in the next minor release. PR #128
12+
- Support for InsertComponent
13+
514
## [0.4.1] - 2022-03-24
615
### Fixed
716
- Bug with otumat version not being tied to the latest PR #119

docker-compose-dev.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ services:
3232
command: pharus
3333
fakeservices.datajoint.io:
3434
<<: *net
35-
image: datajoint/nginx:v0.2.2
35+
image: datajoint/nginx:v0.2.3
3636
environment:
3737
- ADD_pharus_TYPE=REST
3838
- ADD_pharus_ENDPOINT=pharus:5000

pharus/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.4.1"
2+
__version__ = "0.5.0"

0 commit comments

Comments
 (0)