Skip to content
Merged
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [Unreleased]

## [v0.11.8](https://github.com/JuliaData/XLSX.jl/tree/v0.11.8) - 2026-05-15
- 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`
Expand Down
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "XLSX"
uuid = "fdbf4ff8-1666-58a4-91e7-1b58723a45e0"
license = "MIT"
version = "0.11.7"
version = "0.11.8"
authors = ["Felipe Noronha <felipenoris@gmail.com>"]
repo = "https://github.com/juliadata/XLSX.jl.git"

Expand Down
5 changes: 3 additions & 2 deletions src/images.jl
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,9 @@ Supported formats (auto-detected): PNG, JPEG, GIF.

# Keyword Arguments

- `size`: provide the desired size of the image as a tuple of integers: `(width_px, height_px)`. If `nothing` (default),
the image's native pixel size is used. Ignored if `ref` is a cell range. Actual size will snap to the nearest cell boundaries.
- `size`: provide the desired size of the image as a tuple of integers: `(width_px, height_px)`.
If `nothing` (default), the image's native pixel size is used. Ignored if `ref` is a cell range.
Actual size will snap to the nearest cell boundaries.

# Return Value

Expand Down
Loading