Skip to content

Commit

Permalink
increased version number
Browse files Browse the repository at this point in the history
  • Loading branch information
mzeiher committed Jun 17, 2014
1 parent 88c7b82 commit c816991
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions admin/travelermap-admin.php
Original file line number Diff line number Diff line change
Expand Up @@ -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" );
Expand Down
4 changes: 2 additions & 2 deletions admin/travelermap-install.php
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand All @@ -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();
Expand Down
4 changes: 2 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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 ==
Expand Down
4 changes: 2 additions & 2 deletions uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
4 changes: 2 additions & 2 deletions wp-travelermap.php
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down Expand Up @@ -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__ ) );
Expand Down

0 comments on commit c816991

Please sign in to comment.