Skip to content

Commit 79487ad

Browse files
authored
Merge pull request #54 from instamatic-dev/bump_version
Bump version and update authors for release
2 parents fd1a2f3 + 5da6e11 commit 79487ad

File tree

9 files changed

+25
-21
lines changed

9 files changed

+25
-21
lines changed

.zenodo.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,11 @@
99
{
1010
"affiliation": "Stockholm University",
1111
"name": "Bin Wang"
12-
}
12+
},
13+
{
14+
"affiliation": "Amsterdam Scientific Instruments",
15+
"name": "Erik Hogenbirk",
16+
},
1317
],
1418
"keywords": [
1519
"electron-crystallography",

CITATION.cff

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,15 @@ authors:
1111
affiliation: Vironova
1212
family-names: Wang
1313
given-names: Bin
14+
-
15+
affiliation: "Amsterdam Scientific Instruments"
16+
family-names: Hogenbirk
17+
given-names: Erik
1418
cff-version: "1.1.0"
15-
date-released: 2020-06-02
16-
doi: "10.5281/zenodo.4072976"
19+
date-released: 2021-08-09
20+
doi: "10.5281/zenodo.1090388"
1721
license: "GPL-3.0"
1822
message: "If you use this software, please cite it using these metadata."
1923
title: Instamatic
20-
version: "1.6.1"
24+
version: "1.7.0"
2125
...

THANKS.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,6 @@ See [Github contributors list](https://github.com/nipy/nipype/graphs/contributor
66
Special thanks
77
--------------
88

9-
- Bin Wang
10-
- Many tweaks and bug fixes
11-
- FEI API implementation
12-
- Development and testing of cRED integration and automated tracking
13-
- Development and testing of SerialRED automated data collection
14-
159
- Magdalena O. Cichocka
1610
- Testing and feedback on cRED implementation
1711

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def setup(app):
8080
author = 'Stef Smeets'
8181

8282
# The short X.Y version.
83-
version = release = '1.6.1'
83+
version = release = '1.7.0'
8484

8585
# The language for content autogenerated by Sphinx.
8686
language = 'english'

instamatic/__init__.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,16 @@
99
# # # # # # # # # # # # # # # # # # # # # # # # # # # # #
1010
"""
1111

12-
__version__ = '1.6.1'
12+
__version__ = '1.7.0'
1313
__title__ = 'instamatic'
1414
__long_title__ = f'{__title__} v{__version__}'
1515
__author__ = 'Stef Smeets'
16-
__author_email__ = 's.smeets@tudelft.nl'
16+
__author_email__ = 's.smeets@esciencecenter.nl'
1717
__description__ = 'Python program for automated serial electron diffraction data collection'
1818
__license__ = 'GPLv3'
19-
__url__ = 'http://github.com/instamatic-dev/instamatic'
19+
__url__ = 'https://github.com/instamatic-dev/instamatic'
20+
__issues__ = __url__ + '/issues'
21+
__docs__ = 'https://instamatic.readthedocs.io'
2022
__doi__ = 'https://doi.org/10.5281/zenodo.1090388'
2123
__citation__ = f'Instamatic (v.{__version__}), Zenodo, {__doi__}'
2224
__citation_cred__ = 'J. Appl. Cryst. (2018). 51, 1652–1661, https://doi.org/10.1107/S1600576718015145'

instamatic/gui/about_frame.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,21 +95,21 @@ def __init__(self, parent):
9595

9696
Label(frame, text='').grid(row=0, column=0, sticky='W')
9797
Label(frame, text='Contact:').grid(row=1, column=0, sticky='W', padx=10)
98-
Label(frame, text='Stef Smeets ([email protected])').grid(row=1, column=1, sticky='W')
98+
Label(frame, text=f'{instamatic.__author__} ({instamatic.__author_email__}').grid(row=1, column=1, sticky='W')
9999
Label(frame, text='').grid(row=5, column=0, sticky='W')
100100

101101
Label(frame, text='Source code:').grid(row=10, column=0, sticky='W', padx=10)
102102
link = Link_Button(frame, text=instamatic.__url__, action=self.link_github)
103103
link.grid(row=10, column=1, sticky='W')
104104
Label(frame, text='').grid(row=12, column=0, sticky='W')
105105

106-
Label(frame, text='Manual:').grid(row=20, column=0, sticky='W', padx=10)
107-
link = Link_Button(frame, text=instamatic.__url__ + '/docs', action=self.link_github)
106+
Label(frame, text='Docs:').grid(row=20, column=0, sticky='W', padx=10)
107+
link = Link_Button(frame, text=instamatic.__docs__, action=self.link_github)
108108
link.grid(row=20, column=1, sticky='W')
109109
Label(frame, text='').grid(row=22, column=0, sticky='W')
110110

111111
Label(frame, text='Bugs:').grid(row=30, column=0, sticky='W', padx=10)
112-
link = Link_Button(frame, text=instamatic.__url__ + '/issues', action=self.link_github)
112+
link = Link_Button(frame, text=instamatic.__issues__, action=self.link_github)
113113
link.grid(row=30, column=1, sticky='W')
114114
Label(frame, text='').grid(row=32, column=0, sticky='W')
115115

notebooks/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,6 @@ These are some demo's that show some of the functions of `instamatic`
55
- [Interactive data collection](data_collection.ipynb)
66
- [Example of grid montage acquisition](grid_montage_collection.ipynb)
77
- [Montage processing](montage_processing.ipynb)
8-
- [Montage processing (SerialEM data)](http://github.com/stefsmeets/pyserialem/demos/montage_processing_serialem.ipynb)
8+
- [Montage processing (SerialEM data)](https://github.com/instamatic-dev/pyserialem/demos/montage_processing_serialem.ipynb)
99

1010
Use `jupyter notebook` to run these notebooks offline.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = 'instamatic'
3-
version = "1.6.1"
3+
version = "1.7.0"
44
description = 'Python program for automated electron diffraction data collection'
55
license = 'GPL-3.0-only'
66
classifiers = [

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
setup(
1818
long_description=readme,
1919
name='instamatic',
20-
version='1.6.1',
20+
version='1.7.0',
2121
description='Python program for automated electron diffraction data collection',
2222
python_requires='>=3.7',
2323
project_urls={

0 commit comments

Comments
 (0)