Skip to content

Commit

Permalink
chore(release): release 1.1.0 — in the future, GUI versions are pinned!
Browse files Browse the repository at this point in the history
  • Loading branch information
TheLostLambda committed Oct 15, 2023
1 parent 5d58383 commit 52e098c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion 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]

## [1.1.0] - 2023-10-15

### Added

- Added a modification for enabling 3-1 cross-linking (#249)
Expand Down Expand Up @@ -56,7 +58,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

Let there be peptidoglycan.

[Unreleased]: https://github.com/Mesnage-Org/pgfinder/compare/v1.0.3...HEAD
[Unreleased]: https://github.com/Mesnage-Org/pgfinder/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/Mesnage-Org/pgfinder/compare/v1.0.3...v1.1.0
[1.0.3]: https://github.com/Mesnage-Org/pgfinder/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/Mesnage-Org/pgfinder/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/Mesnage-Org/pgfinder/compare/v1.0.0...v1.0.1
Expand Down
2 changes: 1 addition & 1 deletion web/src/lib/pgfinder.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let pyodide: PyodideInterface;
pyodide.registerJsModule('pyio', pyio);
await pyodide.loadPackage(['micropip', 'sqlite3']);
const micropip = pyodide.pyimport('micropip');
await micropip.install('pgfinder');
await micropip.install('pgfinder==1.1.0');
await pyodide.runPythonAsync('import pgfinder; from pgfinder.gui.shim import *');

const pgfinderVersion = await pyodide.runPythonAsync('pgfinder.__version__');
Expand Down

0 comments on commit 52e098c

Please sign in to comment.