From c8169916b403d0ac55cbea463ff46f20853af340 Mon Sep 17 00:00:00 2001 From: Mathis Zeiher Date: Tue, 17 Jun 2014 21:16:01 +0200 Subject: [PATCH] increased version number --- admin/travelermap-admin.php | 4 ++-- admin/travelermap-install.php | 4 ++-- readme.txt | 4 ++-- uninstall.php | 4 ++-- wp-travelermap.php | 4 ++-- 5 files changed, 10 insertions(+), 10 deletions(-) diff --git a/admin/travelermap-admin.php b/admin/travelermap-admin.php index 9f004b8..a9112f8 100644 --- a/admin/travelermap-admin.php +++ b/admin/travelermap-admin.php @@ -33,8 +33,8 @@ function travelermap_enqueue_admin_scripts() { wp_enqueue_script('jquery-colorbox', TM_URL . "js/jquery.colorbox-min.js" , array('jquery'), '1.5.9', false); wp_enqueue_script('spectrum', TM_URL . "js/spectrum.js" , array('jquery'), '1.3.4', false); wp_enqueue_script('json2'); - wp_enqueue_script('travelermap-admin', TM_URL . "admin/js/travelermap-admin.js" , array(), '0.9.0', false); - wp_enqueue_script('travelermap-frontend', TM_URL . "frontend/js/travelermap-frontend.js" , array(), '0.9.0', false); + wp_enqueue_script('travelermap-admin', TM_URL . "admin/js/travelermap-admin.js" , array(), '1.0.0', false); + wp_enqueue_script('travelermap-frontend', TM_URL . "frontend/js/travelermap-frontend.js" , array(), '1.0.0', false); wp_enqueue_style('tm-admin', TM_URL . "media/tm-admin.css" ); wp_enqueue_style('tm-frontend', TM_URL . "media/tm-frontend.css" ); wp_enqueue_style('font-awesome', TM_URL . "media/font-awesome.min.css" ); diff --git a/admin/travelermap-install.php b/admin/travelermap-install.php index cee7695..0a3b058 100644 --- a/admin/travelermap-install.php +++ b/admin/travelermap-install.php @@ -23,7 +23,7 @@ */ function travelermap_create_settings() { - add_option( "travelermap_version", "0.9.0" ); + add_option( "travelermap_version", "1.0.0" ); } function travelermap_create_tables() { @@ -41,7 +41,7 @@ function travelermap_create_tables() { require_once( ABSPATH . 'wp-admin/includes/upgrade.php' ); dbDelta( $map_sql ); - add_option( "travelermap_db_version", "0.9.0" ); + add_option( "travelermap_db_version", "1.0.0" ); } travelermap_create_settings(); diff --git a/readme.txt b/readme.txt index 5f2ea57..c83d6c8 100644 --- a/readme.txt +++ b/readme.txt @@ -4,7 +4,7 @@ Donate link: http://bitschubser.org Tags: travel, map, waypoints Requires at least: 3.9.0 Tested up to: 3.9.0 -Stable tag: 0.9.0 +Stable tag: 1.0.0 License: MIT License URI: http://opensource.org/licenses/MIT @@ -51,7 +51,7 @@ Go to http://blog.bitschubser.org and ask in the wp-travelermap section or here == Changelog == -= 0.9.0 = += 1.0.0 = * Initial Release of the BETA == Upgrade Notice == diff --git a/uninstall.php b/uninstall.php index c9de986..e7c32cd 100644 --- a/uninstall.php +++ b/uninstall.php @@ -32,8 +32,8 @@ function travelermap_uninstall() { "DROP TABLE $map_table" ); - delete_option( "travelermap_db_version", "0.9.0" ); - delete_option( "travelermap_version", "0.9.0" ); + delete_option( "travelermap_db_version"); + delete_option( "travelermap_version"); } travelermap_uninstall(); diff --git a/wp-travelermap.php b/wp-travelermap.php index 9dbf081..959ddfe 100644 --- a/wp-travelermap.php +++ b/wp-travelermap.php @@ -3,7 +3,7 @@ Plugin Name: wp-travelermap Plugin URI: http://bitschubser.org Description: A simple Plugin to create travel routes and manage maps -Version: 0.9.0 +Version: 1.0.0 Author: Mathis Zeiher Author URI: http://bitschubser.org/ @@ -31,7 +31,7 @@ if ( ! defined( 'ABSPATH' ) ) exit; if ( ! defined( 'TM_VERSION' ) ) - define( 'TM', '0.0.1' ); + define( 'TM', '1.0.0' ); if ( ! defined( 'TM_URL' ) ) define( 'TM_URL', plugin_dir_url( __FILE__ ) );