-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from gridap/release-0.6.8
Release 0.6.8
- Loading branch information
Showing
10 changed files
with
115 additions
and
36 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "github-actions" | ||
directory: "/" # Location of package manifests | ||
schedule: | ||
interval: "monthly" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,41 @@ | ||
# Changelog | ||
|
||
All notable changes to this project will be documented in this file. | ||
|
||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), | ||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). | ||
|
||
## [0.6.8] - 2024.08.29 | ||
|
||
### Added | ||
|
||
- Added `SparseMatrixCSC` and `AbstractMatrix` constructors. | ||
|
||
### Fixed | ||
- Fixed show method for SparseMatrixCSR | ||
|
||
- Fixed show method for SparseMatrixCSR. | ||
- Fixes related to `TransposeFactorization` (see https://github.com/JuliaLang/julia/pull/46874). | ||
|
||
## [0.6.6] - 2021.11.26 | ||
|
||
### Added | ||
|
||
- Implemented `Base.setindex!`. | ||
|
||
## [0.6.5] - 2021.10.20 | ||
|
||
### Fixed | ||
|
||
- Return value of `LinearAlbegra.fillstored!`. | ||
|
||
### Added | ||
|
||
- Implemented `LinearAlbegra.rmul!`. | ||
|
||
## [0.6.4] - 2021.10.20 | ||
|
||
### Added | ||
|
||
- Implemented `LinearAlbegra.fillstored!`. | ||
|
||
*Previous releases are not included in this Changelog* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
Manifest.toml | ||
build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
[deps] | ||
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4" | ||
DocumenterInterLinks = "d12716ef-a0f6-4df4-a9f1-a5a34e75c656" | ||
SparseMatricesCSR = "a0a7dd2c-ebf4-11e9-1f05-cf50bc540ca1" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
using Documenter, SparseMatricesCSR | ||
using Documenter, DocumenterInterLinks | ||
using SparseMatricesCSR | ||
|
||
links = InterLinks( | ||
"SparseArrays" => "https://docs.julialang.org/en/v1/" | ||
) | ||
|
||
makedocs(; | ||
modules=[SparseMatricesCSR], | ||
|
@@ -9,6 +14,7 @@ makedocs(; | |
repo="https://github.com/gridap/SparseMatricesCSR.jl/blob/{commit}{path}#L{line}", | ||
sitename="SparseMatricesCSR.jl", | ||
authors="Víctor Sande <[email protected]> and Francesc Verdugo <[email protected]>", | ||
plugins=[links], | ||
) | ||
|
||
deploydocs(; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters