File tree Expand file tree Collapse file tree 8 files changed +249
-182
lines changed Expand file tree Collapse file tree 8 files changed +249
-182
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ 0.0.9 / 2023-11-12
4
+ ------------------
5
+ - Changed
6
+ - Fix support for missing cell reference
7
+ - Refactoring and optimizations
8
+
3
9
0.0.8 / 2023-11-03
4
10
------------------
5
11
- Changed
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ In the first example below we pull data from a specific sheet within the workboo
38
38
#! /usr/bin/env bb
39
39
(require '[babashka.deps :as deps])
40
40
(deps/add-deps
41
- '{:deps {com.github.kbosompem/bb-excel {:mvn/version " 0.0.8 " }}})
41
+ '{:deps {com.github.kbosompem/bb-excel {:mvn/version " 0.0.9 " }}})
42
42
43
43
(ns demo
44
44
(:require [clojure.java.io :as io]
Original file line number Diff line number Diff line change 2
2
3
3
(require '[babashka.deps :as deps])
4
4
5
- (deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version " 0.0.8 " }}})
5
+ (deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version " 0.0.9 " }}})
6
6
7
7
(ns bb-excel
8
8
(:require [bb-excel.core :refer [get-sheets get-range get-sheet]]
115
115
(defn help
116
116
" Command line options"
117
117
[summary]
118
- (->> [" bb-excel 0.0.8 "
118
+ (->> [" bb-excel 0.0.9 "
119
119
" "
120
120
" Usage: bb-excel input-file options"
121
121
" "
Original file line number Diff line number Diff line change 2
2
3
3
(require '[babashka.deps :as deps])
4
4
5
- (deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version " 0.0.8 " }}})
5
+ (deps/add-deps '{:deps {com.github.kbosompem/bb-excel {:mvn/version " 0.0.9 " }}})
6
6
7
7
(ns bbexcel
8
8
(:require [bb-excel.core :refer [get-sheets get-range get-sheet]]
115
115
(defn help
116
116
" Command line options"
117
117
[summary]
118
- (->> [" bbexcel 0.0.8 "
118
+ (->> [" bbexcel 0.0.9 "
119
119
" "
120
120
" Usage: bbexcel input-file options"
121
121
" "
Original file line number Diff line number Diff line change 1
- (defproject com.github.kbosompem /bb-excel " 0.0.8 "
1
+ (defproject com.github.kbosompem /bb-excel " 0.0.9 "
2
2
:description " A Simple Clojure/Babashka Library for Reading Data from Excel Files"
3
3
:url " https://github.com/kbosompem/bb-excel"
4
4
:license {:name " EPL-2.0"
You can’t perform that action at this time.
0 commit comments