Skip to content

Commit

Permalink
iSome updates to the .app.src, docs, and rebar.config
Browse files Browse the repository at this point in the history
  • Loading branch information
choptastic committed Oct 27, 2023
1 parent 133277a commit 09e6358
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 4 deletions.
File renamed without changes.
2 changes: 1 addition & 1 deletion LICENSE → LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2013-2016 Jesse Gumm
Copyright (c) 2013-2023 Jesse Gumm

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
8 changes: 6 additions & 2 deletions README.markdown → README.md
Original file line number Diff line number Diff line change
Expand Up @@ -485,14 +485,18 @@ There are a number of quirks to get comfortable with when using sql_bridge:
* Numeric and Decimal types are returned as floats or integers. Again, this
is because of some code I have that depends on it.
## Change Log
See [CHANGELOG.md](https://github.com/choptastic/sql_bridge/blob/master/LICENSE.md)
## TODO
* Maybe Experiment with [record-based querys](https://github.com/choptastic/sql_bridge/issues/1)
* Add SQLLite Support
## About
Copyright (c) 2013-2021 [Jesse Gumm](http://jessegumm.com)
Copyright (c) 2013-2023 [Jesse Gumm](http://jessegumm.com)
([@jessegumm](http://twitter.com/jessegumm))
[MIT License](https://github.com/choptastic/sql_bridge/blob/master/LICENSE)
[MIT License](https://github.com/choptastic/sql_bridge/blob/master/LICENSE.md)
11 changes: 11 additions & 0 deletions rebar.config
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,17 @@
debug_info
]}.

{project_plugins, [rebar3_ex_doc]}.

{hex, [{doc, ex_doc}]}.

{ex_doc, [
{source_url, <<"https://github.com/choptastic/sql_bridge">>},
{extras, [<<"README.md">>, <<"LICENSE.md">>]},
{main, <<"readme">>}
]}.


{deps, [
b64fast,
erlias,
Expand Down
2 changes: 1 addition & 1 deletion src/sql_bridge.app.src
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{application, sql_bridge,
[
{description, "A convenience layer for SQL databases"},
{vsn, "0.6.2"},
{vsn, "0.7.0"},
{licenses, ["MIT"]},
{links, [{"Github", "https://github.com/choptastic/sql_bridge"}]},
{registered, []},
Expand Down

0 comments on commit 09e6358

Please sign in to comment.