Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .zenodo.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "ProjectMember"
}
],
"description": "XLSX.jl is a Julia package to read and write Excel spreadsheet files in the XLSX format.",
"description": "XLSX.jl is a Julia package to read and write Excel spreadsheet files.",
"license": "mit",
"upload_type": "software",
"keywords": ["julia", "excel", "xlsx", "spreadsheet"]
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
- add `dependabot` support ([#130](https://github.com/JuliaData/XLSX.jl/issues/130))
- add ability to read native template (`.xltx`) files ([#293](https://github.com/JuliaData/XLSX.jl/issues/293))
- add `getDefinedNames` to mirror `addDefinedName`
- support adding png, jpg or gif images into a sheet ([#134](https://github.com/JuliaData/XLSX.jl/issues/134))

## [v0.11.7](https://github.com/JuliaData/XLSX.jl/tree/v0.11.7) - 2026-05-07
- Fix issue [#368](https://github.com/JuliaData/XLSX.jl/issues/368) for both reading and writing
Expand Down
1 change: 1 addition & 0 deletions docs/src/api/files.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,5 @@ XLSX.addsheet!
XLSX.renamesheet!
XLSX.copysheet!
XLSX.deletesheet!
XLSX.addImage
```
2 changes: 2 additions & 0 deletions src/XLSX.jl
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ export
writexlsx, savexlsx,
Worksheet, sheetnames, sheetcount, hassheet,
addsheet!, renamesheet!, copysheet!, deletesheet!,
addImage,
# Cells & data
CellRef, row_number, column_number, eachtablerow,
readdata, getdata, gettable, readtable, readto,
Expand Down Expand Up @@ -60,6 +61,7 @@ include("cellformat-helpers.jl") # must load before cellformats.jl
include("cellformats.jl")
include("conditional-format-helpers.jl") # must load before conditional-formats.jl
include("conditional-formats.jl")
include("images.jl")
include("write.jl")
include("fileArray.jl")

Expand Down
Loading
Loading