diff --git a/pom.xml b/pom.xml
index fda89b169..b96594ce8 100644
--- a/pom.xml
+++ b/pom.xml
@@ -6,7 +6,7 @@
tk.shanebeeSkBee
- 1.9.1
+ 1.10.01.8
diff --git a/src/main/java/tk/shanebee/bee/elements/nbt/expressions/ExprTagOfNBT.java b/src/main/java/tk/shanebee/bee/elements/nbt/expressions/ExprTagOfNBT.java
index fc5b190e9..cb1004777 100644
--- a/src/main/java/tk/shanebee/bee/elements/nbt/expressions/ExprTagOfNBT.java
+++ b/src/main/java/tk/shanebee/bee/elements/nbt/expressions/ExprTagOfNBT.java
@@ -33,9 +33,9 @@
"Also note that you can NOT create custom tags for entities/blocks. As of 1.7.1 blocks(tile entities)/entities will be able to hold custom nbt",
"data in the \"custom\" tag of said block/entity. Due to Minecraft not supporting this, I had to use some hacky methods to make this happen.",
"That said, this system is a tad convoluted, see the SkBee WIKI for more details.",
- "As of INSERT VERSION you can now add custom NBT to any block (the same as you would for tile entities)(This is only support on 1.16.4+). ",
+ "As of 1.10.0 you can now add custom NBT to any block (the same as you would for tile entities)(This is only support on 1.16.4+). ",
"Since Minecraft does not natively support this, the NBT is actually stored in the chunk's NBT. See wiki for more info.",
- "As of INSERT VERSION you can get/set specific tag types of NBT compounds, allowing for more detailed control of what type your tag is going to be."})
+ "As of 1.10.0 you can get/set specific tag types of NBT compounds, allowing for more detailed control of what type your tag is going to be."})
@Examples({"set {_tag} to tag \"Invulnerable\" of targeted entity's nbt",
"send \"Tag: %tag \"\"CustomName\"\" of nbt of target entity%\" to player",
"set {_tag} to \"Enchantments\" tag of nbt of player's tool",
diff --git a/src/main/java/tk/shanebee/bee/elements/nbt/types/SkriptTypes.java b/src/main/java/tk/shanebee/bee/elements/nbt/types/SkriptTypes.java
index 1c9ef7306..3310e072b 100644
--- a/src/main/java/tk/shanebee/bee/elements/nbt/types/SkriptTypes.java
+++ b/src/main/java/tk/shanebee/bee/elements/nbt/types/SkriptTypes.java
@@ -25,7 +25,7 @@ public class SkriptTypes {
.usage(NBTCustomType.getNames())
.examples("set byte tag \"points\" of {_nbt} to 1",
"set compound tag \"tool\" of {_nbt} to nbt compound of player's tool")
- .since("INSERT VERSION")
+ .since("1.10.0")
.parser(new Parser() {
@Nullable
diff --git a/src/main/java/tk/shanebee/bee/elements/other/conditions/CondIsMinecraftTagged.java b/src/main/java/tk/shanebee/bee/elements/other/conditions/CondIsMinecraftTagged.java
index 05eda617a..e139e292e 100644
--- a/src/main/java/tk/shanebee/bee/elements/other/conditions/CondIsMinecraftTagged.java
+++ b/src/main/java/tk/shanebee/bee/elements/other/conditions/CondIsMinecraftTagged.java
@@ -20,7 +20,7 @@
@Examples({"if player's tool is tagged with minecraft tag \"carpets\":",
"if target block is not tagged as minecraft tag \"fence_gates\"",
"if clicked block is tagged as minecraft block tag \"doors\" or minecraft block tag \"fence_gates\""})
-@Since("INSERT VERSION")
+@Since("1.10.0")
public class CondIsMinecraftTagged extends Condition {
static {
diff --git a/src/main/java/tk/shanebee/bee/elements/other/effects/EffOpenContainerAnimation.java b/src/main/java/tk/shanebee/bee/elements/other/effects/EffOpenContainerAnimation.java
index f62a8b4b3..3458e9d13 100644
--- a/src/main/java/tk/shanebee/bee/elements/other/effects/EffOpenContainerAnimation.java
+++ b/src/main/java/tk/shanebee/bee/elements/other/effects/EffOpenContainerAnimation.java
@@ -22,7 +22,7 @@
"Requires Minecraft 1.16+"})
@Examples({"play open animation on target block",
"play close animation on all blocks in radius 3 around player"})
-@Since("INSERT VERSION")
+@Since("1.10.0")
public class EffOpenContainerAnimation extends Effect {
static {
diff --git a/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMaterialChoice.java b/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMaterialChoice.java
index b86023993..26c1f3df1 100644
--- a/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMaterialChoice.java
+++ b/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMaterialChoice.java
@@ -28,7 +28,7 @@
@Examples({"set {_a} to material choice of diamond sword, diamond shovel and diamond hoe",
"set {_a} to material choice of every sword",
"set {_a} to material choice of minecraft tag \"doors\""})
-@Since("INSERT VERSION")
+@Since("1.10.0")
public class ExprMaterialChoice extends SimpleExpression {
static {
diff --git a/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMinecraftTag.java b/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMinecraftTag.java
index ea2af9a6b..09dfc38c2 100644
--- a/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMinecraftTag.java
+++ b/src/main/java/tk/shanebee/bee/elements/other/expressions/ExprMinecraftTag.java
@@ -34,7 +34,7 @@
"set {_tag} to \"minecraft:climbable\"", "",
"loop minecraft tags:",
"\tsend \"-%loop-value%\" to console"})
-@Since("INSERT VERSION")
+@Since("1.10.0")
public class ExprMinecraftTag extends SimpleExpression