Skip to content

Commit

Permalink
Merge pull request #90 from aglavic/release
Browse files Browse the repository at this point in the history
Release version 1.0
  • Loading branch information
jochenstahn authored Jun 10, 2022
2 parents da5a0fc + eb3eb56 commit 6e26955
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 9 deletions.
9 changes: 8 additions & 1 deletion HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,14 @@
History
=======

0.1.0 (2022-06-08)
1.0.0 (2022-06-10)
------------------

* ORSO general assembly has voted to release the first version of orsopy together with the
text representation of the text file (.ort) specification.
See https://www.reflectometry.org/workshops/workshop_2022/

0.1.1 (2022-06-08)
------------------

* Fix missing data files in distribution
Expand Down
2 changes: 1 addition & 1 deletion orsopy/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""Top-level package for orsopy."""

__version__ = "0.1.1"
__version__ = "1.0.0"
2 changes: 1 addition & 1 deletion orsopy/fileio/orso.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from .data_source import DataSource
from .reduction import Reduction

ORSO_VERSION = "0.1"
ORSO_VERSION = "1.0"
ORSO_DESIGNATE = (
f"# ORSO reflectivity data file | {ORSO_VERSION} standard " "| YAML encoding | https://www.reflectometry.org/"
)
Expand Down
4 changes: 2 additions & 2 deletions orsopy/fileio/schema/refl_header.schema.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/reflectivity/orsopy/v0.1/orsopy/fileio/schema/refl_header.schema.json",
"$id": "https://raw.githubusercontent.com/reflectivity/orsopy/v1.0/orsopy/fileio/schema/refl_header.schema.json",
"title": "Orso",
"type": "object",
"properties": {
Expand Down Expand Up @@ -507,7 +507,7 @@
]
},
"polarization": {
"description": "Polarization described as unpolarized/ p / m / pp / pm / mp / mm / vector",
"description": "Polarization described as unpolarized/ po/ mo / op / om / pp / pm / mp / mm / vector",
"anyOf": [
{
"$ref": "#/definitions/Polarization"
Expand Down
6 changes: 3 additions & 3 deletions orsopy/fileio/schema/refl_header.schema.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
$id: https://raw.githubusercontent.com/reflectivity/orsopy/v0.1/orsopy/fileio/schema/refl_header.schema.json
$id: https://raw.githubusercontent.com/reflectivity/orsopy/v1.0/orsopy/fileio/schema/refl_header.schema.json
$schema: http://json-schema.org/draft-07/schema#
definitions:
Column:
Expand Down Expand Up @@ -178,8 +178,8 @@ definitions:
- $ref: '#/definitions/Polarization'
- $ref: '#/definitions/ValueVector'
- type: 'null'
description: Polarization described as unpolarized/ p / m / pp / pm / mp /
mm / vector
description: Polarization described as unpolarized/ po/ mo / op / om / pp
/ pm / mp / mm / vector
wavelength:
anyOf:
- $ref: '#/definitions/Value'
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ classifiers =
License :: OSI Approved :: MIT License
Operating System :: OS Independent
Topic :: Scientific/Engineering
Development Status :: 4 - Beta
Development Status :: 5 - Production/Stable

[options]
python_requires = >=3.8
Expand Down

0 comments on commit 6e26955

Please sign in to comment.