Skip to content

Commit

Permalink
Prepare for test release v0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
aymgal committed Apr 17, 2024
1 parent 0395699 commit ce9962a
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
16 changes: 11 additions & 5 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# CHANGELOG
# Official releases

## 04/10/22
## v0.1.0 (2023-08-02)

- Version corresponding to the JOSS publication

# Older changes

## 04-10-22

- The `ExternalShear` object has been replaced ba a more general `MassField` object. This is for supporting higher-order lensing fields such as flexion in the future. The two supported types of `LensingEntity` are thus `Galaxy` and `MassField`.

Expand All @@ -9,7 +15,7 @@
- The single parameter of the `GaussianPSF` has changed from the standard deviation `std_dev` to the more widely used full width at half maximum `fwhm`.


## 14/10/22
## 14-10-22

### Major changes:

Expand All @@ -23,7 +29,7 @@
- a 'DOC' mode has been added to the root COOLEST class (for usage with the documentation website, see separate repository)


## 02/06/22
## 02-06-22

### Major changes

Expand All @@ -44,7 +50,7 @@ These affect the template structure:
- COOLEST standard now supports two distinct modes: 'MAP' to store model results, and 'MOCK' for simulating an observation


## 31/05/22
## 31-05-22

### Major changes
Theese affect the template structure:
Expand Down
4 changes: 2 additions & 2 deletions coolest/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"""

# Set the package release version
version_info = (0, 1, 1)
version_info = (0, 1, 2)
__version__ = '.'.join(str(c) for c in version_info)

# Set the package details
Expand All @@ -18,7 +18,7 @@
__description__ = 'Standard for Strong Gravitational Lens Modeling'

# Default package properties
__license__ = 'MIT'
__license__ = 'GPL-3.0'
__about__ = ('{} Author: {}, Email: {}, Year: {}, {}'
''.format(__name__, __author__, __email__, __year__,
__description__))
Expand Down

0 comments on commit ce9962a

Please sign in to comment.