|
| 1 | +# UnicodeGraphics.jl |
| 2 | +## Version `v0.2.1` |
| 3 | +* ![Feature][badge-feature] Added support for multidimensional arrays ([#7][pr-7]) |
| 4 | + |
| 5 | +## Version `v0.2.0` |
| 6 | +* ![Feature][badge-feature] Directly write to `stdout` using `uprint(A)` or to any IO using `uprint(io, A)` ([#5][pr-5]) |
| 7 | +* ![Feature][badge-feature] Added support for filtering functions to `uprint` and `ustring`. `uprint(f, A)` shows values of `A` for which `f` returns `true` ([#5][pr-5]) |
| 8 | +* ![Deprecation][badge-deprecation] Deprecated `brailize(A)`, use `ustring(A)` or `ustring(A, :braille)` instead ([#5][pr-5]) |
| 9 | +* ![Deprecation][badge-deprecation] Deprecated `blockize(A)`, use `ustring(A, :block)` instead ([#5][pr-5]) |
| 10 | + |
| 11 | +<!-- |
| 12 | +# Badges |
| 13 | +![BREAKING][badge-breaking] |
| 14 | +![Deprecation][badge-deprecation] |
| 15 | +![Feature][badge-feature] |
| 16 | +![Enhancement][badge-enhancement] |
| 17 | +![Bugfix][badge-bugfix] |
| 18 | +![Experimental][badge-experimental] |
| 19 | +![Maintenance][badge-maintenance] |
| 20 | +![Documentation][badge-docs] |
| 21 | +--> |
| 22 | + |
| 23 | +[pr-5]: https://github.com/JuliaGraphics/UnicodeGraphics.jl/pull/5 |
| 24 | +[pr-7]: https://github.com/JuliaGraphics/UnicodeGraphics.jl/pull/7 |
| 25 | + |
| 26 | +[badge-breaking]: https://img.shields.io/badge/BREAKING-red.svg |
| 27 | +[badge-deprecation]: https://img.shields.io/badge/deprecation-orange.svg |
| 28 | +[badge-feature]: https://img.shields.io/badge/feature-green.svg |
| 29 | +[badge-enhancement]: https://img.shields.io/badge/enhancement-blue.svg |
| 30 | +[badge-bugfix]: https://img.shields.io/badge/bugfix-purple.svg |
| 31 | +[badge-security]: https://img.shields.io/badge/security-black.svg |
| 32 | +[badge-experimental]: https://img.shields.io/badge/experimental-lightgrey.svg |
| 33 | +[badge-maintenance]: https://img.shields.io/badge/maintenance-gray.svg |
| 34 | +[badge-docs]: https://img.shields.io/badge/docs-orange.svg |
0 commit comments