Skip to content

Commit

Permalink
Merge pull request #11 from g-duff/change/to-version-0.2.0
Browse files Browse the repository at this point in the history
Change to version 0.2.0
  • Loading branch information
g-duff authored May 6, 2023
2 parents 8fc58fa + 5b9b2b7 commit 904d5e8
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

## [v0.2.0](https://github.com/g-duff/optical_dispersion_relations/releases/v0.2.0)

### Added

* `wavelength_to_wavenumber` utility function.
Expand Down
12 changes: 6 additions & 6 deletions Jenkinsfile.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ pipeline {

stage('Install dependencies') {
steps {
sh "make dev_dependencies"
sh 'make dev_dependencies'
}
}

stage('Lint') {
steps {
script {
try {
sh "make lint"
sh 'make lint'
} catch (error) {
unstable(message: "${STAGE_NAME} is unstable")
}
Expand All @@ -28,7 +28,7 @@ pipeline {
steps {
script {
try {
sh "make test"
sh 'make test'
} catch (error) {
unstable(message: "${STAGE_NAME} is unstable")
}
Expand All @@ -46,19 +46,19 @@ pipeline {

success {
script {
notifyGitHubBuildStatus("optical_dispersion_relations", "success")
notifyGitHubBuildStatus('optical_dispersion_relations', 'success')
}
}

unstable {
script {
notifyGitHubBuildStatus("optical_dispersion_relations", "failure")
notifyGitHubBuildStatus('optical_dispersion_relations', 'failure')
}
}

failure {
script {
notifyGitHubBuildStatus("optical_dispersion_relations", "error")
notifyGitHubBuildStatus('optical_dispersion_relations', 'error')
}
}

Expand Down
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ gold_permittivity = drude_lorentz.double_pole(
angular_frequency, **gold_drude_parameters)
```

![drude lorentz example figure](examples/images/drude_lorentz_example.png)

* More examples can be found under `/examples/`.

## Install
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta"
[project]
dependencies = ["numpy>=1.23.4"]
name = "optical_dispersion_relations"
version = "0.1.1"
version = "0.2.0"
authors = [
{ name="George Duffett" },
]
Expand Down

0 comments on commit 904d5e8

Please sign in to comment.