Skip to content

Commit

Permalink
bump version, update readme, index
Browse files Browse the repository at this point in the history
  • Loading branch information
drizk1 committed Jun 17, 2024
1 parent 598bea7 commit ab2570e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "TidierDB"
uuid = "86993f9b-bbba-4084-97c5-ee15961ad48b"
authors = ["Daniel Rizk <rizk.daniel.12@gmail.com> and contributors"]
version = "0.1.6"
version = "0.1.7"

[deps]
AWS = "fbe9abb3-538b-5e4e-ba9e-bc94f4f92ebc"
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ The main goal of TidierDB.jl is to bring the syntax of Tidier.jl to multiple SQL
- Postgres `set_sql_mode(:postgres)`
- Athena `set_sql_mode(:athena)`
- Google Big Query `set_sql_mode(:gbq)`
- Oracle `set_sql_mode(:oracle)`

The style of SQL that is generated can be modified using `set_sql_mode()`.

Expand Down
3 changes: 2 additions & 1 deletion docs/examples/UserGuide/getting_started.jl
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

# Alternatively, `using Tidier` will import TidierDB in the above manner for you, where TidierDB functions and macros will be available as `DB.@mutate()` and so on, and the TidierData equivalent would be `@mutate()`.

# There are two ways to connect to the database. you can use `connect` without any need to load any additional packages.
# There are two ways to connect to the database. You can use `connect` without any need to load any additional packages. However, Oracle and Athena do not support this method yet and will require you to load in ODBC.jl or AWS.jl respectively.

# For example
# Connecting to MySQL
Expand All @@ -29,5 +29,6 @@
# - Postgres: LibPQ.jl
# - SQLite: SQLite.jl
# - Athena: AWS.jl
# - Oracle: ODBC.jl

# For DuckDB, SQLite, and MySQL, `copy_to()` lets you copy data to the database and query there. ClickHouse, MSSQL, and Postgres support for `copy_to()` has not been added yet.
2 changes: 2 additions & 0 deletions docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@ The main goal of TidierDB.jl is to bring the syntax of Tidier.jl to multiple SQL
- Postgres `set_sql_mode(:postgres)`
- Athena `set_sql_mode(:athena)`
- Google Big Query `set_sql_mode(:gbq)`
- Oracle `set_sql_mode(:oracle)`


The style of SQL that is generated can be modified using `set_sql_mode()`.

Expand Down

2 comments on commit ab2570e

@drizk1
Copy link
Member Author

@drizk1 drizk1 commented on ab2570e Jun 17, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@JuliaRegistrator register

Release notes:

  • adds support for Oracle backend via ODBC.jl connection

@JuliaRegistrator
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Registration pull request created: JuliaRegistries/General/109203

Tagging

After the above pull request is merged, it is recommended that a tag is created on this repository for the registered package version.

This will be done automatically if the Julia TagBot GitHub Action is installed, or can be done manually through the github interface, or via:

git tag -a v0.1.7 -m "<description of version>" ab2570e16717712af1f959f3b9ec2976bfd5d0e4
git push origin v0.1.7

Please sign in to comment.