Skip to content

Commit

Permalink
Add support for missing cell reference
Browse files Browse the repository at this point in the history
wip

fix

fix

fix

fix

fix

fix

fix

fix

fix
  • Loading branch information
velios committed Nov 12, 2023
1 parent 5137a65 commit cec7a91
Show file tree
Hide file tree
Showing 8 changed files with 249 additions and 182 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

0.0.9 / 2023-11-12
------------------
- Changed
- Fix support for missing cell reference
- Refactoring and optimizations

0.0.8 / 2023-11-03
------------------
- Changed
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ In the first example below we pull data from a specific sheet within the workboo
#!/usr/bin/env bb
(require '[babashka.deps :as deps])
(deps/add-deps
'{:deps {com.github.kbosompem/bb-excel {:mvn/version "0.0.8"}}})
'{:deps {com.github.kbosompem/bb-excel {:mvn/version "0.0.9"}}})

(ns demo
(:require [clojure.java.io :as io]
Expand Down
4 changes: 2 additions & 2 deletions bb-excel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(require '[babashka.deps :as deps])

(deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version "0.0.8"}}})
(deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version "0.0.9"}}})

(ns bb-excel
(:require [bb-excel.core :refer [get-sheets get-range get-sheet]]
Expand Down Expand Up @@ -115,7 +115,7 @@
(defn help
"Command line options"
[summary]
(->> ["bb-excel 0.0.8"
(->> ["bb-excel 0.0.9"
""
"Usage: bb-excel input-file options"
""
Expand Down
4 changes: 2 additions & 2 deletions bbexcel
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

(require '[babashka.deps :as deps])

(deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version "0.0.8"}}})
(deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version "0.0.9"}}})

(ns bbexcel
(:require [bb-excel.core :refer [get-sheets get-range get-sheet]]
Expand Down Expand Up @@ -115,7 +115,7 @@
(defn help
"Command line options"
[summary]
(->> ["bbexcel 0.0.8"
(->> ["bbexcel 0.0.9"
""
"Usage: bbexcel input-file options"
""
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.github.kbosompem/bb-excel "0.0.8"
(defproject com.github.kbosompem/bb-excel "0.0.9"
:description "A Simple Clojure/Babashka Library for Reading Data from Excel Files"
:url "https://github.com/kbosompem/bb-excel"
:license {:name "EPL-2.0"
Expand Down
Loading

0 comments on commit cec7a91

Please sign in to comment.