4 Commits
6 ... 7

Author SHA1 Message Date
thintz
8fbc5a540e Release new version the actually increments the version number. 2013-07-19 10:02:50 -07:00
thintz
887319ad05 Release new version. 2013-07-17 09:34:02 -07:00
7b32156467 Fix put-string! and put-sexp!.
Thanks to Seth Alves for reporting the bug and providing a patch.
2013-07-17 09:07:46 -07:00
f1f2e2a663 version 6 2012-05-04 08:23:13 -07:00
3 changed files with 6 additions and 4 deletions

View File

@@ -6,3 +6,5 @@
(release "3") (release "3")
(release "4") (release "4")
(release "5") (release "5")
(release "6")
(release "7")

View File

@@ -187,7 +187,7 @@
content-length: object-length no-xml: #t)) content-length: object-length no-xml: #t))
(define (put-string! bucket key string) (define (put-string! bucket key string)
(put-object! bucket key (lambda () string) (string-length string) "text/plain")) (put-object! bucket key (lambda () (display string)) (string-length string) "text/plain"))
(define (put-sexp! bucket key sexp) (define (put-sexp! bucket key sexp)
(let-values (((res request-uri response) (put-string! bucket key (->string sexp)))) (let-values (((res request-uri response) (put-string! bucket key (->string sexp))))

View File

@@ -11,5 +11,5 @@
; Files to install for your extension: ; Files to install for your extension:
'("amazon-s3.o" "amazon-s3.so" "amazon-s3.import.so") '("amazon-s3.o" "amazon-s3.so" "amazon-s3.import.so")
; Assoc list with properties for your extension: ; Assoc list with properties for your extension:
'((version 5) '((version 7)
(static "amazon-s3.o"))) ;; for static linking (static "amazon-s3.o"))) ;; for static linking