Skip to content

Commit 00dba9b

Browse files
committed
v1.1 (corrected version no)
1 parent a0090f4 commit 00dba9b

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

install.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
prompt install.sql
2-
prompt mailgun v0.8 15/9/2018
2+
prompt mailgun v1.1 15/9/2018
33
-- run this script in the schema in which you wish the objects to be installed.
44

55
@create_tables.sql
@@ -24,7 +24,7 @@ begin dbms_utility.compile_schema(user,false); end;
2424

2525
prompt update api_version
2626
merge into mailgun_settings t
27-
using (select 'api_version' as nm, '0.8' as val from dual) s
27+
using (select 'api_version' as nm, '1.1' as val from dual) s
2828
on (t.setting_name = s.nm)
2929
when matched then update set setting_value = s.val
3030
when not matched then insert (setting_name, setting_value)

install_with_logger.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
prompt install.sql
2-
prompt mailgun v0.8 15/9/2018
2+
prompt mailgun v1.1 15/9/2018
33
-- run this script in the schema in which you wish the objects to be installed.
44

55
@create_tables.sql
@@ -24,7 +24,7 @@ begin dbms_utility.compile_schema(user,false); end;
2424

2525
prompt update api_version
2626
merge into mailgun_settings t
27-
using (select 'api_version' as nm, '0.8' as val from dual) s
27+
using (select 'api_version' as nm, '1.1' as val from dual) s
2828
on (t.setting_name = s.nm)
2929
when matched then update set setting_value = s.val
3030
when not matched then insert (setting_name, setting_value)

mailgun_pkg.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
create or replace package body mailgun_pkg is
2-
/* mailgun API v0.8 15/9/2018
2+
/* mailgun API v1.1 15/9/2018
33
https://github.com/jeffreykemp/mailgun-plsql-api
44
by Jeffrey Kemp
55
*/

mailgun_pkg.pks

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
create or replace package mailgun_pkg is
2-
/* mailgun API v0.8 15/9/2018
2+
/* mailgun API v1.1 15/9/2018
33
https://github.com/jeffreykemp/mailgun-plsql-api
44
by Jeffrey Kemp
55
*/

mailgun_pkg_with_logger.pkb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
create or replace package body mailgun_pkg is
2-
/* mailgun API v0.8 15/9/2018
2+
/* mailgun API v1.1 15/9/2018
33
https://github.com/jeffreykemp/mailgun-plsql-api
44
by Jeffrey Kemp
55
Instrumented using Logger https://github.com/OraOpenSource/Logger

0 commit comments

Comments
 (0)