Skip to content

Commit

Permalink
0.1.6
Browse files Browse the repository at this point in the history
  • Loading branch information
pozi119 committed Sep 29, 2022
1 parent b5ede73 commit 5f688f6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,10 @@
2. 对swift的枚举类型支持并不完美, 目前编码为Int类型,按定义顺序从0依次递增, 请谨慎使用.
3. 大致用法请参考[VVSequelize](https://github.com/pozi119/VVSequelize)

## 改动(0.1.5)
1. Fix bug
2. 修改like & glob 语句
## 改动(0.1.6)
1. 移除Where, OrderBy, GroupBy, Fields,直接使用String
2. 为String添加自定义运算符,用于生产各种SQL子句
3. 将各种查询、更新、删除条件改为闭包方式,可链式调用。

## 安装

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.5'
s.version = '0.1.6'
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.1-beta1'
ss.dependency 'AnyCoder', '~> 0.1.2'
ss.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end

Expand Down

0 comments on commit 5f688f6

Please sign in to comment.