Index: applications/editors/josm/plugins/CustomizePublicTransportStop/build.properties
===================================================================
--- applications/editors/josm/plugins/CustomizePublicTransportStop/build.properties	(revision 32440)
+++ applications/editors/josm/plugins/CustomizePublicTransportStop/build.properties	(revision 32441)
@@ -10,9 +10,9 @@
 # via the OSM subversion repository
 #
-plugin.version=0.1.2
+plugin.version=0.3
 
 # the lowest JOSM version the curent plugin version is compatible with
 #
-josm.required.version=7171
+josm.required.version=10353
 
 # the full path to the JOSM jar against which this plugin is built
Index: applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml
===================================================================
--- applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml	(revision 32440)
+++ applications/editors/josm/plugins/CustomizePublicTransportStop/build.xml	(revision 32441)
@@ -71,5 +71,5 @@
                 <attribute name="Plugin-Link" value="http://wiki.openstreetmap.org/wiki/JOSM/Plugins/CustomizePublicTransportStop" />
                 <attribute name="Plugin-Mainversion" value="${josm.required.version}" />
-                <attribute name="Plugin-Version" value="0.2" />	
+                <attribute name="Plugin-Version" value="0.3" />	
                 <attribute name="RU_Plugin-Description" value="Настройка остановки общественного транспорта в соответствии со стандартом" />
             </manifest>
Index: applications/editors/josm/plugins/CustomizePublicTransportStop/src/ru/rodsoft/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAction.java
===================================================================
--- applications/editors/josm/plugins/CustomizePublicTransportStop/src/ru/rodsoft/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAction.java	(revision 32440)
+++ applications/editors/josm/plugins/CustomizePublicTransportStop/src/ru/rodsoft/openstreetmap/josm/plugins/customizepublictransportstop/CustomizeStopAction.java	(revision 32441)
@@ -76,5 +76,6 @@
 		if (!isEnabled())
 			return;
-		CreateStopAreaFromSelectedObjectOperation createStopAreaFromSelectedObjectOperation = new CreateStopAreaFromSelectedObjectOperation(getCurrentDataSet());
+		CreateStopAreaFromSelectedObjectOperation createStopAreaFromSelectedObjectOperation = new CreateStopAreaFromSelectedObjectOperation(
+		        getLayerManager().getEditDataSet());
 		StopArea stopArea = createStopAreaFromSelectedObjectOperation.performCustomizing(null);
 		if(stopArea == null)
@@ -92,5 +93,5 @@
 	public StopArea performCustomizing(StopArea stopArea)
 	{
-		CustomizeStopAreaOperation customizeStopAreaOperation = new CustomizeStopAreaOperation(getCurrentDataSet());
+		CustomizeStopAreaOperation customizeStopAreaOperation = new CustomizeStopAreaOperation(getLayerManager().getEditDataSet());
 		return customizeStopAreaOperation.performCustomizing(stopArea);
 	}
