Skip to content

Commit

Permalink
fix version (#1042)
Browse files Browse the repository at this point in the history
* fix version

* fix oracledialect supporting Oracle 23ai
  • Loading branch information
mattn authored Oct 30, 2024
1 parent b0fb54c commit aba08a0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion dialect/oracledialect/dialect.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ func New() *Dialect {
//feature.InsertReturning | // TODO
//feature.Output | // TODO
feature.InsertOnConflict |
//feature.TableNotExists |
feature.TableTruncate |
feature.TableNotExists |
feature.SelectExists |
feature.AutoIncrement |
feature.CompositeIn
Expand Down
2 changes: 1 addition & 1 deletion dialect/oracledialect/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@ package oracledialect

// Version is the current release version.
func Version() string {
return "1.2.1"
return "1.2.5"
}

0 comments on commit aba08a0

Please sign in to comment.