Skip to content

Commit c6adae5

Browse files
committed
bug fix
1 parent 9e2b484 commit c6adae5

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

OMio.lisp

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
;; OMio - 0.11 - OM input/output: designed to make easier to import/export data
2-
;; 14/sept/2019
1+
;; OMio - 0.2 - OM input/output: designed to make easier to import/export data
2+
;; 24/oct/2022
33

44
(defvar omio)
5-
(defpackage omio)
5+
(defpackage :omio)
66

77
(in-package :omio)
88

@@ -39,12 +39,12 @@
3939
(om::fill-library *subpackages-list*)
4040

4141

42-
(om::set-lib-release 0.11)
42+
(om::set-lib-release 0.2)
4343

4444
(print "
4545
;;;-----------------
46-
;;; OMio 0.1 - in/out functions for OpenMusic
46+
;;; OMio 0.2 - in/out functions for OpenMusic
4747
;;;
48-
;;; José Henrique Padovani (2019)
48+
;;; Jose Henrique Padovani (2022)
4949
;;;===========================================================================
5050
")

OMio.omlib

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
(:om-lib
22

3-
(:version 0.11)
3+
(:version 0.2)
44
(:doc "Library to import/export different kind of data file types.")
55

6-
(:author "José Henrique Padovani (2019)")
6+
(:author "José Henrique Padovani (2022)")
77

88
(:source-files
99
"sources/package"

sources/omiocsv.lisp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
; Warning: First, seting the package where the functions will be defined
2-
(in-package :om)
2+
(in-package :omio)
33

44
; Functions definition
55

0 commit comments

Comments
 (0)