Skip to content

Commit

Permalink
0.1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
pozi119 committed Oct 12, 2022
1 parent 5413c4e commit 4d76753
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 15 deletions.
20 changes: 10 additions & 10 deletions Example/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
PODS:
- AnyCoder (0.1.3):
- AnyCoder (0.1.4):
- Runtime
- Runtime (2.2.2)
- SQLCipher (4.4.0):
- SQLCipher/standard (= 4.4.0)
- SQLCipher/common (4.4.0)
- SQLCipher/standard (4.4.0):
- SQLCipher/common
- SQLiteORM (0.1.7):
- SQLiteORM/cipher (= 0.1.7)
- SQLiteORM/cipher (0.1.7):
- SQLiteORM (0.1.8):
- SQLiteORM/cipher (= 0.1.8)
- SQLiteORM/cipher (0.1.8):
- SQLCipher
- SQLiteORM/core
- SQLiteORM/fts
- SQLiteORM/util
- SQLiteORM/core (0.1.7):
- AnyCoder (~> 0.1.2)
- SQLiteORM/fts (0.1.7):
- SQLiteORM/core (0.1.8):
- AnyCoder (~> 0.1.4)
- SQLiteORM/fts (0.1.8):
- SQLiteORM/core
- SQLiteORM/util (0.1.7)
- SQLiteORM/util (0.1.8)

DEPENDENCIES:
- AnyCoder (from `../../AnyCoder`)
Expand All @@ -36,10 +36,10 @@ EXTERNAL SOURCES:
:path: "../"

SPEC CHECKSUMS:
AnyCoder: c7e1408b4e5bf6ee4e74c6af7207ea16d7d8a900
AnyCoder: 0f3cee6a1ad720907ddc7ea6595f7d12d126a75d
Runtime: 67741bd196fb4ad821c4d259ccc527bf734d8806
SQLCipher: e434ed542b24f38ea7b36468a13f9765e1b5c072
SQLiteORM: 491df4da4edaa13affce05fdfa2c1e6517271159
SQLiteORM: fb9868d2b54bb0e0a0d401993bf8e77d8dde5edd

PODFILE CHECKSUM: a0c1d45dffb705c97a929e039f73ec9e27460591

Expand Down
8 changes: 5 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,10 @@
[![License](https://img.shields.io/cocoapods/l/SQLiteORM.svg?style=flat)](https://cocoapods.org/pods/SQLiteORM)
[![Platform](https://img.shields.io/cocoapods/p/SQLiteORM.svg?style=flat)](https://cocoapods.org/pods/SQLiteORM)

## 改动(0.1.7)
1. 修复Bug.
## 改动(0.1.8)
1. 修复README
2. AnyCoder版本改为0.1.4
3. 修复Debug模式下,错误信息未打印SQL语句的问题

## 功能
* [x] 根据Class/Struct生成数据表
Expand All @@ -32,7 +34,7 @@

## 安装
```ruby
pod 'SQLiteORM', '~> 0.1.7'
pod 'SQLiteORM', '~> 0.1.8'
```
使用测试版本:
```ruby
Expand Down
4 changes: 2 additions & 2 deletions SQLiteORM.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'SQLiteORM'
s.version = '0.1.7'
s.version = '0.1.8'
s.summary = 'The swift version of VVSequelize.'

s.description = <<-DESC
Expand Down Expand Up @@ -42,7 +42,7 @@ Pod::Spec.new do |s|

s.subspec 'core' do |ss|
ss.source_files = 'SQLiteORM/Core/**/*'
ss.dependency 'AnyCoder', '~> 0.1.2'
ss.dependency 'AnyCoder', '~> 0.1.4'
ss.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end

Expand Down

0 comments on commit 4d76753

Please sign in to comment.