Skip to content

Commit

Permalink
bump version to 0.7.3
Browse files Browse the repository at this point in the history
  • Loading branch information
daringer committed Sep 3, 2023
1 parent dd14a96 commit 35921cd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# Flex Table

[![hacs_badge](https://img.shields.io/badge/HACS-Default-41BDF5.svg?style=for-the-badge)](https://github.com/hacs/integration)
[![Version](https://img.shields.io/badge/version-0.7.2-green.svg?style=plastic)](#)
[![stable-release-0.7.2](https://img.shields.io/badge/stable-release_0.7.1-green.svg?style=plastic)](#)
[![Version](https://img.shields.io/badge/version-0.7.3-green.svg?style=plastic)](#)
[![stable-release-0.7.3](https://img.shields.io/badge/stable-release_0.7.3-green.svg?style=plastic)](#)
<a href="https://www.buymeacoffee.com/daringer" target="_blank"> <img src="https://cdn.buymeacoffee.com/buttons/lato-green.png" alt="Buy Me A Coffee Or Beer" height=18></a>

## Installation using HACS ([Home Assistant Community Store](https://hacs.xyz))
Expand Down
2 changes: 1 addition & 1 deletion flex-table-card.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"use strict";

// VERSION info
var VERSION = "0.7.1";
var VERSION = "0.7.3";

// typical [[1,2,3], [6,7,8]] to [[1, 6], [2, 7], [3, 8]] converter
var transpose = m => m[0].map((x, i) => m.map(x => x[i]));
Expand Down

0 comments on commit 35921cd

Please sign in to comment.