Skip to content

Commit

Permalink
Update release version
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewSazonov committed Sep 5, 2023
1 parent 8115388 commit 857df90
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
1 change: 0 additions & 1 deletion .github/workflows/installer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,6 @@ jobs:
- name: Install Python dependences
run: |
python -m pip install numpy lmfit numdifftools
python -m pip install lmfit numdifftools
python -m pip install orjson jsbeautifier
python -m pip install pyinstaller requests dephell_licenses
python -m pip install git+https://github.com/ikibalin/cryspy.git@beta
Expand Down
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Version 0.9.0-alpha1 (18 Aug 2023)
# Version 0.9.0-alpha5 (5 Sep 2023)

This is a test version of EasyDiffraction with improved GUI and overall performance. This version temporarily does not use the EasyScience framework, contains only CrysPy as calculation engine and uses only Lmfit for minimization.

Expand Down
6 changes: 3 additions & 3 deletions easyDiffractionApp/Gui/Globals/Configs.qml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ QtObject { // If "Unknown component. (M300) in QtCreator", try: "Tools > QML/JS
readonly property var projectConfig: QtObject {
readonly property var release: QtObject { // NEED FIX
readonly property string appName: 'EasyDiffraction'
readonly property string version: '0.9.0-alpha4'
readonly property string appIssuesUrl: 'https://github.com/easyscience/EasyDiffractionApp/issues'
readonly property string version: '0.9.0-alpha5'
readonly property string appIssuesUrl: 'https://github.com/easyscience/easydiffractionapp/issues'
readonly property string homePageUrl: 'https://easydiffraction.org'
readonly property string docsUrl: 'https://docs.easydiffraction.org/app/'
readonly property string contactUrl: 'https://easydiffraction.org/#contact'
Expand All @@ -25,7 +25,7 @@ QtObject { // If "Unknown component. (M300) in QtCreator", try: "Tools > QML/JS
readonly property string branch_url: ''
readonly property string commit_sha_short: ''
readonly property string commit_url: ''
readonly property string build_date: '27 Aug 2023'
readonly property string build_date: '5 Sep 2023'
}
}
}
Expand Down
7 changes: 3 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ allow-direct-references = true
# the application itself is EasyExample.
[project]
name = 'easyDiffractionApp'
version = '0.9.0-alpha4'
version = '0.9.0-alpha5'
description = 'Making diffraction data analysis and modelling easy.'
authors = [
{name = "Andrew Sazonov", email = "andrew.sazonov@ess.eu"}
Expand All @@ -30,13 +30,12 @@ classifiers = [
requires-python = ">=3.8,<3.11"
dependencies = [
# those are mostly required by snapcraft
'toml',
'numpy',
'lmfit',
'numdifftools',
'orjson',
'jsbeautifier',
'toml',
'darkdetect',
'numdifftools',
'cryspy @ git+https://github.com/ikibalin/cryspy.git@beta',
'EasyApp @ git+https://github.com/easyscience/EasyApp.git@new-easy-app2'
]
Expand Down

0 comments on commit 857df90

Please sign in to comment.