Просмотр исходного кода

Update app file and bump version to 1.2.0

Tim Fletcher 14 лет назад
Родитель
Сommit
29cb4781fd
1 измененных файлов с 3 добавлено и 17 удалено
  1. 3 17
      ebin/oauth.app

+ 3 - 17
ebin/oauth.app

@@ -1,21 +1,7 @@
 {application, oauth, [
   {description, "An Erlang OAuth 1.0 implementation"},
-  {vsn, "1.1.1"},
-  {modules, [
-    oauth,
-    oauth_client,
-    oauth_hmac_sha1,
-    oauth_http,
-    oauth_plaintext,
-    oauth_rsa_sha1,
-    oauth_uri
-  ]},
+  {vsn, "1.2.0"},
+  {modules, [oauth]},
   {registered, []},
-  {applications, [
-    kernel,
-    stdlib,
-    crypto,
-    public_key,
-    inets
-  ]}
+  {applications, [kernel, stdlib, crypto, public_key, inets]}
 ]}.