Skip to content

Commit eb90d15

Browse files
authored
Prepare metadata for v0.1.1 (#42)
1 parent 9df0715 commit eb90d15

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,23 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66

77
## [Unreleased]
88

9+
## [0.1.1] - 2025-08-05
10+
911
### Changed
1012

1113
- Bumped compat for *DataStructures.jl* from `0.18.15` to `0.18.15 - 0.19` (#39).
12-
- Removed the unnecessary and redundant `_laplacian_1neg_spectra(spec::SSpectra)` method from `src/laplacian_s_spectra.jl` (this method literally did nothing whatsoever; I left it in from a previous design approach) (#38).
1314
- Changed `check_spectrum_integrality` to compute the real integer eigenvalues lazily (comparison was already lazy, but taking the real part and rounding was not) (#37).
1415

16+
### Removed
17+
18+
- Removed the unnecessary and redundant `_laplacian_1neg_spectra(spec::SSpectra)` method from `src/laplacian_s_spectra.jl` (this method literally did nothing whatsoever; I left it in from a previous design approach) (#38).
19+
1520
## [0.1.0] - 2025-08-01
1621

1722
### Added
1823

1924
- Released the initial stable version of the package.
2025

21-
[unreleased]: https://github.com/GraphQuantum/SDiagonalizability.jl/compare/v0.1.0...HEAD
26+
[unreleased]: https://github.com/GraphQuantum/SDiagonalizability.jl/compare/v0.1.1...HEAD
27+
[0.1.1]: https://github.com/Luis-Varona/MatrixBandwidth.jl/releases/tag/v0.1.1
2228
[0.1.0]: https://github.com/Luis-Varona/MatrixBandwidth.jl/releases/tag/v0.1.0

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ homepage = "https://graphquantum.github.io/SDiagonalizability.jl/"
88
maintainers = ["Luis M. B. Varona <[email protected]>"]
99
readme = "README.md"
1010
repository = "https://github.com/GraphQuantum/SDiagonalizability.jl"
11-
version = "0.1.0"
11+
version = "0.1.1"
1212

1313
[deps]
1414
Combinatorics = "861a8166-3701-5b0c-9a16-15d98fcdc6aa"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<tr>
88
<td>Metadata</td>
99
<td>
10-
<img src="https://img.shields.io/badge/version-v0.1.0-pink.svg" alt="Version">
10+
<img src="https://img.shields.io/badge/version-v0.1.1-pink.svg" alt="Version">
1111
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-A31F34.svg" alt="License: MIT"></a>
1212
<a href="https://github.com/JuliaDiff/BlueStyle"><img src="https://img.shields.io/badge/code%20style-blue-4495d1.svg" alt="Code Style: Blue"></a>
1313
</td>
@@ -265,7 +265,7 @@ true
265265

266266
## Documentation
267267

268-
The full documentation is available at [GitHub Pages](https://graphquantum.github.io/SDiagonalizability.jl/). Documentation for methods and types is also available via the Julia REPL. (Note that as we have just completed development of the core API, many symbols lack complete documentation at this time&mdash;we aim to rectify this with the release of v0.1.1.)
268+
The full documentation is available at [GitHub Pages](https://graphquantum.github.io/SDiagonalizability.jl/). Documentation for methods and types is also available via the Julia REPL. (Note that as we have just completed development of the core API, many symbols lack complete documentation at this time&mdash;we aim to rectify this by the release of v0.2.0.)
269269

270270
## Citing
271271

@@ -275,7 +275,7 @@ The latest citation information may be found in the [CITATION.bib](https://raw.g
275275

276276
## Project status
277277

278-
The latest stable release of *SDiagonalizability.jl* is v0.1.0. Although a good chunk of documentation and tests is still missing, the core API is fully functional and the package is ready for use. We are currently working on filling in the gaps and aim to release a more polished update (v0.1.1) in the near future.
278+
The latest stable release of *SDiagonalizability.jl* is v0.1.1. Although a good chunk of documentation and tests is still missing, the core API is fully functional and the package is ready for use. We are currently working on filling in the gaps and aim to release a more polished update (v0.2.0) in the near future.
279279

280280
## Credits
281281

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ CurrentModule = SDiagonalizability
1414
<tr>
1515
<td>Metadata</td>
1616
<td>
17-
<img src="https://img.shields.io/badge/version-v0.1.0-pink.svg" alt="Version">
17+
<img src="https://img.shields.io/badge/version-v0.1.1-pink.svg" alt="Version">
1818
<a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-A31F34.svg" alt="License: MIT"></a>
1919
<a href="https://github.com/JuliaDiff/BlueStyle"><img src="https://img.shields.io/badge/code%20style-blue-4495d1.svg" alt="Code Style: Blue"></a>
2020
</td>
@@ -273,7 +273,7 @@ true
273273

274274
## Documentation
275275

276-
The full documentation is available at [GitHub Pages](https://graphquantum.github.io/SDiagonalizability.jl/). Documentation for methods and types is also available via the Julia REPL. (Note that as we have just completed development of the core API, many symbols lack complete documentation at this time—we aim to rectify this with the release of v0.1.1.)
276+
The full documentation is available at [GitHub Pages](https://graphquantum.github.io/SDiagonalizability.jl/). Documentation for methods and types is also available via the Julia REPL. (Note that as we have just completed development of the core API, many symbols lack complete documentation at this time—we aim to rectify this by the release of v0.2.0.)
277277

278278
## Citing
279279

@@ -283,7 +283,7 @@ The latest citation information may be found in the [CITATION.bib](https://raw.g
283283

284284
## Project status
285285

286-
The latest stable release of *SDiagonalizability.jl* is v0.1.0. Although a good chunk of documentation and tests is still missing, the core API is fully functional and the package is ready for use. We are currently working on filling in the gaps and aim to release a more polished update (v0.1.1) in the near future.
286+
The latest stable release of *SDiagonalizability.jl* is v0.1.1. Although a good chunk of documentation and tests is still missing, the core API is fully functional and the package is ready for use. We are currently working on filling in the gaps and aim to release a more polished update (v0.2.0) in the near future.
287287

288288
## Credits
289289

src/basis_search.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@ mutable struct _QOBasisSearchNode
198198
degree::UInt16
199199
end
200200

201+
#= TODO: Might we be able to replace the `deepcopy` calls with `copy` instead (maybe further
202+
copying some internal elements but not all, like the struct references)? =#
201203
function _find_basis_idxs_with_prop(
202204
curr_idxs::AbstractVector{Int},
203205
prop::QuasiOrthogonality,

0 commit comments

Comments
 (0)