Skip to content

Commit 26b9ed9

Browse files
Bump version to 0.10.2 (#122)
* Bump version to 0.10.2 * Update copyright statements to 2021
1 parent 092cf9f commit 26b9ed9

28 files changed

+33
-28
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## Version 0.10.2 (2021-01-19)
4+
5+
* Parsing of decay files (aka .dec files):
6+
- New decay models as taken from most-recent EvtGen documentation.
7+
38
## Version 0.10.1 (2020-12-10)
49

510
* Environment YAML file updated to ``Particle`` version 0.14.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
BSD 3-Clause License
22

3-
Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
3+
Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
44
All rights reserved.
55

66
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following

decaylanguage/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
3+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
44
#
55
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
66
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/_version.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.
66

77

8-
__version__ = "0.10.1"
8+
__version__ = "0.10.2"
99

1010
version = __version__
1111
version_info = __version__.split(".")

decaylanguage/data/ampgen.lark

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
1+
// Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
22
//
33
// Distributed under the 3-clause BSD license, see accompanying file LICENSE
44
// or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/data/decfile.lark

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
1+
// Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
22
//
33
// Distributed under the 3-clause BSD license, see accompanying file LICENSE
44
// or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/dec/dec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/dec/enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/decay/decay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/decay/viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/modeling/ampgen2goofit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
3+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
44
#
55
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
66
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/modeling/ampgentransform.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/modeling/amplitudechain.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/modeling/decay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/modeling/goofit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/utils/errors.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/utils/particleutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

decaylanguage/utils/utilities.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

notebooks/ExampleDecFileParsingWithLark.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
"name": "stdout",
5555
"output_type": "stream",
5656
"text": [
57-
"// Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.\n",
57+
"// Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.\n",
5858
"//\n",
5959
"// Distributed under the 3-clause BSD license, see accompanying file LICENSE\n",
6060
"// or https://github.com/scikit-hep/decaylanguage for details.\n",

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env python
22
# -*- coding: utf-8 -*-
3-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
3+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
44
#
55
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
66
# or https://github.com/scikit-hep/decaylanguage for details.

tests/dec/test_dec.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

tests/decay/test_decay.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

tests/decay/test_viewer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

tests/test_convert.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

tests/test_dec_full.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

tests/test_decaylanguage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

tests/test_goofit.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# -*- coding: utf-8 -*-
2-
# Copyright (c) 2018-2020, Eduardo Rodrigues and Henry Schreiner.
2+
# Copyright (c) 2018-2021, Eduardo Rodrigues and Henry Schreiner.
33
#
44
# Distributed under the 3-clause BSD license, see accompanying file LICENSE
55
# or https://github.com/scikit-hep/decaylanguage for details.

0 commit comments

Comments
 (0)