Skip to content

Commit

Permalink
1.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mfikes committed Nov 22, 2020
1 parent 4736c9d commit 4224955
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Ambly.podspec
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
Pod::Spec.new do |s|
s.name = 'Ambly'
s.version = '1.7.0'
s.version = '1.8.0'
s.license = { :type => 'Eclipse Public License 1.0', :file => 'LICENSE' }
s.summary = 'ClojureScript REPL into embedded JavaScriptCore'
s.homepage = 'https://github.com/mfikes/ambly'
s.author = 'Mike Fikes'
s.source = { :git => 'https://github.com/mfikes/ambly.git', :tag => '1.7.0' }
s.source = { :git => 'https://github.com/mfikes/ambly.git', :tag => '1.8.0' }
s.source_files = 'ObjectiveC/src/*.{h,m}'
s.ios.deployment_target = '8.0'
s.tvos.deployment_target = '9.0'
Expand Down
2 changes: 1 addition & 1 deletion Clojure/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject ambly "1.7.0"
(defproject ambly "1.8.0"
:description "ClojureScript REPL into embedded JavaScriptCore."
:url "https://github.com/mfikes/ambly"
:license {:name "Eclipse Public License"
Expand Down
2 changes: 1 addition & 1 deletion ObjectiveC/Ambly Demo/Ambly Demo CLI/main.m
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
NSLog(@"Ambly 1.7.0");
NSLog(@"Ambly 1.8.0");
App* app = [[App alloc] init];
[app setup];
[[NSRunLoop currentRunLoop] run];
Expand Down
2 changes: 1 addition & 1 deletion ObjectiveC/Ambly Demo/Ambly Demo/Info-TV.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.8.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion ObjectiveC/Ambly Demo/Ambly Demo/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>APPL</string>
<key>CFBundleShortVersionString</key>
<string>1.7.0</string>
<string>1.8.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Ambly comprises a ClojureScript REPL implementation, along with Objective-C code
An iOS, macOS and tvOS demo apps are included, making it easy to give the REPL a spin.

```
pod "Ambly", "~> 1.7.0"
pod "Ambly", "~> 1.8.0"
```

[![Clojars Project](http://clojars.org/ambly/latest-version.svg)](http://clojars.org/ambly)
Expand Down

0 comments on commit 4224955

Please sign in to comment.