diff --git a/LICENSE b/LICENSE index 504f3f1f..983d8e46 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2023 StuyPulse +Copyright (c) 2025 StuyPulse Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/build.gradle b/build.gradle index 65ab133b..ede167f8 100644 --- a/build.gradle +++ b/build.gradle @@ -1,5 +1,5 @@ buildscript { - ext.WPI_VER = "2024.1.1" + ext.WPI_VER = "2025.1.1" } plugins { @@ -7,7 +7,7 @@ plugins { id "maven-publish" - id "edu.wpi.first.GradleRIO" version "${WPI_VER}" + id "edu.wpi.first.GradleRIO" version "2025.1.1" id "com.diffplug.spotless" version "6.22.0" id "com.github.spotbugs" version "5.2.0" } diff --git a/settings.gradle b/settings.gradle index aa06df79..1af4ea5b 100644 --- a/settings.gradle +++ b/settings.gradle @@ -4,7 +4,7 @@ pluginManagement { repositories { mavenLocal() gradlePluginPortal() - String frcYear = '2022' + String frcYear = '2025' File frcHome if (OperatingSystem.current().isWindows()) { String publicFolder = System.getenv('PUBLIC') diff --git a/src/com/stuypulse/stuylib/control/Controller.java b/src/com/stuypulse/stuylib/control/Controller.java index a56c3567..818bd3c5 100644 --- a/src/com/stuypulse/stuylib/control/Controller.java +++ b/src/com/stuypulse/stuylib/control/Controller.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/ControllerGroup.java b/src/com/stuypulse/stuylib/control/ControllerGroup.java index e07371e1..3cbfaa52 100644 --- a/src/com/stuypulse/stuylib/control/ControllerGroup.java +++ b/src/com/stuypulse/stuylib/control/ControllerGroup.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/angle/AngleController.java b/src/com/stuypulse/stuylib/control/angle/AngleController.java index 67cf6e56..e89ffeaa 100644 --- a/src/com/stuypulse/stuylib/control/angle/AngleController.java +++ b/src/com/stuypulse/stuylib/control/angle/AngleController.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/angle/AngleControllerGroup.java b/src/com/stuypulse/stuylib/control/angle/AngleControllerGroup.java index ef144b40..34670470 100644 --- a/src/com/stuypulse/stuylib/control/angle/AngleControllerGroup.java +++ b/src/com/stuypulse/stuylib/control/angle/AngleControllerGroup.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/angle/feedback/AnglePIDController.java b/src/com/stuypulse/stuylib/control/angle/feedback/AnglePIDController.java index ffe6e0b7..7b80a39a 100644 --- a/src/com/stuypulse/stuylib/control/angle/feedback/AnglePIDController.java +++ b/src/com/stuypulse/stuylib/control/angle/feedback/AnglePIDController.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/angle/feedforward/AngleArmFeedforward.java b/src/com/stuypulse/stuylib/control/angle/feedforward/AngleArmFeedforward.java index e124d3a1..a0e11ae1 100644 --- a/src/com/stuypulse/stuylib/control/angle/feedforward/AngleArmFeedforward.java +++ b/src/com/stuypulse/stuylib/control/angle/feedforward/AngleArmFeedforward.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/angle/feedforward/AnglePositionFeedforwardController.java b/src/com/stuypulse/stuylib/control/angle/feedforward/AnglePositionFeedforwardController.java index 3e9498e4..89218155 100644 --- a/src/com/stuypulse/stuylib/control/angle/feedforward/AnglePositionFeedforwardController.java +++ b/src/com/stuypulse/stuylib/control/angle/feedforward/AnglePositionFeedforwardController.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/feedback/PIDController.java b/src/com/stuypulse/stuylib/control/feedback/PIDController.java index 4ee4a422..09ba8b23 100644 --- a/src/com/stuypulse/stuylib/control/feedback/PIDController.java +++ b/src/com/stuypulse/stuylib/control/feedback/PIDController.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/feedforward/ArmFeedforward.java b/src/com/stuypulse/stuylib/control/feedforward/ArmFeedforward.java index e49f4fd8..efa5d7f3 100644 --- a/src/com/stuypulse/stuylib/control/feedforward/ArmFeedforward.java +++ b/src/com/stuypulse/stuylib/control/feedforward/ArmFeedforward.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/feedforward/ElevatorFeedforward.java b/src/com/stuypulse/stuylib/control/feedforward/ElevatorFeedforward.java index 9ed6f6e0..e40879c3 100644 --- a/src/com/stuypulse/stuylib/control/feedforward/ElevatorFeedforward.java +++ b/src/com/stuypulse/stuylib/control/feedforward/ElevatorFeedforward.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/feedforward/MotorFeedforward.java b/src/com/stuypulse/stuylib/control/feedforward/MotorFeedforward.java index 6305bdf3..a373876f 100644 --- a/src/com/stuypulse/stuylib/control/feedforward/MotorFeedforward.java +++ b/src/com/stuypulse/stuylib/control/feedforward/MotorFeedforward.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/feedforward/PositionFeedforwardController.java b/src/com/stuypulse/stuylib/control/feedforward/PositionFeedforwardController.java index c5fe5858..dcaf00a9 100644 --- a/src/com/stuypulse/stuylib/control/feedforward/PositionFeedforwardController.java +++ b/src/com/stuypulse/stuylib/control/feedforward/PositionFeedforwardController.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/control/feedforward/VelocityFeedforwardController.java b/src/com/stuypulse/stuylib/control/feedforward/VelocityFeedforwardController.java index ed725849..0486d3ee 100644 --- a/src/com/stuypulse/stuylib/control/feedforward/VelocityFeedforwardController.java +++ b/src/com/stuypulse/stuylib/control/feedforward/VelocityFeedforwardController.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/input/Gamepad.java b/src/com/stuypulse/stuylib/input/Gamepad.java index 2bbbfb25..7fe66559 100644 --- a/src/com/stuypulse/stuylib/input/Gamepad.java +++ b/src/com/stuypulse/stuylib/input/Gamepad.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/input/WPIGamepad.java b/src/com/stuypulse/stuylib/input/WPIGamepad.java index 584f465a..b37c4796 100644 --- a/src/com/stuypulse/stuylib/input/WPIGamepad.java +++ b/src/com/stuypulse/stuylib/input/WPIGamepad.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/input/gamepads/AutoGamepad.java b/src/com/stuypulse/stuylib/input/gamepads/AutoGamepad.java index 737cfed0..329075f5 100644 --- a/src/com/stuypulse/stuylib/input/gamepads/AutoGamepad.java +++ b/src/com/stuypulse/stuylib/input/gamepads/AutoGamepad.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/input/gamepads/Logitech.java b/src/com/stuypulse/stuylib/input/gamepads/Logitech.java index 2eb55f22..10059097 100644 --- a/src/com/stuypulse/stuylib/input/gamepads/Logitech.java +++ b/src/com/stuypulse/stuylib/input/gamepads/Logitech.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/input/gamepads/PS4.java b/src/com/stuypulse/stuylib/input/gamepads/PS4.java index 47bc80f0..06325a92 100644 --- a/src/com/stuypulse/stuylib/input/gamepads/PS4.java +++ b/src/com/stuypulse/stuylib/input/gamepads/PS4.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/input/gamepads/Xbox.java b/src/com/stuypulse/stuylib/input/gamepads/Xbox.java index e6a7ad07..17fb36a5 100644 --- a/src/com/stuypulse/stuylib/input/gamepads/Xbox.java +++ b/src/com/stuypulse/stuylib/input/gamepads/Xbox.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/math/Angle.java b/src/com/stuypulse/stuylib/math/Angle.java index a451c3be..74228a1f 100644 --- a/src/com/stuypulse/stuylib/math/Angle.java +++ b/src/com/stuypulse/stuylib/math/Angle.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/math/SLMath.java b/src/com/stuypulse/stuylib/math/SLMath.java index 19dbe340..9bee8051 100644 --- a/src/com/stuypulse/stuylib/math/SLMath.java +++ b/src/com/stuypulse/stuylib/math/SLMath.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/math/Vector2D.java b/src/com/stuypulse/stuylib/math/Vector2D.java index 7c052346..318e08bf 100644 --- a/src/com/stuypulse/stuylib/math/Vector2D.java +++ b/src/com/stuypulse/stuylib/math/Vector2D.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/network/SmartBoolean.java b/src/com/stuypulse/stuylib/network/SmartBoolean.java index 5bec443b..45a0b4bd 100644 --- a/src/com/stuypulse/stuylib/network/SmartBoolean.java +++ b/src/com/stuypulse/stuylib/network/SmartBoolean.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/network/SmartNumber.java b/src/com/stuypulse/stuylib/network/SmartNumber.java index 0d78f8d4..2b0c01c7 100644 --- a/src/com/stuypulse/stuylib/network/SmartNumber.java +++ b/src/com/stuypulse/stuylib/network/SmartNumber.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/network/SmartString.java b/src/com/stuypulse/stuylib/network/SmartString.java index 6179647d..6d54652e 100644 --- a/src/com/stuypulse/stuylib/network/SmartString.java +++ b/src/com/stuypulse/stuylib/network/SmartString.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/AStick.java b/src/com/stuypulse/stuylib/streams/angles/AStick.java index 78060a1f..3a973dc9 100644 --- a/src/com/stuypulse/stuylib/streams/angles/AStick.java +++ b/src/com/stuypulse/stuylib/streams/angles/AStick.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/AStream.java b/src/com/stuypulse/stuylib/streams/angles/AStream.java index 74d3f6e6..e4f050ad 100644 --- a/src/com/stuypulse/stuylib/streams/angles/AStream.java +++ b/src/com/stuypulse/stuylib/streams/angles/AStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/FilteredAStream.java b/src/com/stuypulse/stuylib/streams/angles/FilteredAStream.java index f4c64b1b..12451458 100644 --- a/src/com/stuypulse/stuylib/streams/angles/FilteredAStream.java +++ b/src/com/stuypulse/stuylib/streams/angles/FilteredAStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/PollingAStream.java b/src/com/stuypulse/stuylib/streams/angles/PollingAStream.java index d80e2fdb..79f508cb 100644 --- a/src/com/stuypulse/stuylib/streams/angles/PollingAStream.java +++ b/src/com/stuypulse/stuylib/streams/angles/PollingAStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/filters/AFilter.java b/src/com/stuypulse/stuylib/streams/angles/filters/AFilter.java index ad78f8ee..a63185e6 100644 --- a/src/com/stuypulse/stuylib/streams/angles/filters/AFilter.java +++ b/src/com/stuypulse/stuylib/streams/angles/filters/AFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/filters/AFilterGroup.java b/src/com/stuypulse/stuylib/streams/angles/filters/AFilterGroup.java index 2fecccec..7e983f53 100644 --- a/src/com/stuypulse/stuylib/streams/angles/filters/AFilterGroup.java +++ b/src/com/stuypulse/stuylib/streams/angles/filters/AFilterGroup.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/filters/AHighPassFilter.java b/src/com/stuypulse/stuylib/streams/angles/filters/AHighPassFilter.java index bfcf546e..e2df1587 100644 --- a/src/com/stuypulse/stuylib/streams/angles/filters/AHighPassFilter.java +++ b/src/com/stuypulse/stuylib/streams/angles/filters/AHighPassFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/filters/ALowPassFilter.java b/src/com/stuypulse/stuylib/streams/angles/filters/ALowPassFilter.java index 9307f19c..4b260db9 100644 --- a/src/com/stuypulse/stuylib/streams/angles/filters/ALowPassFilter.java +++ b/src/com/stuypulse/stuylib/streams/angles/filters/ALowPassFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/filters/AMotionProfile.java b/src/com/stuypulse/stuylib/streams/angles/filters/AMotionProfile.java index 4325ce59..3bb2a9a4 100644 --- a/src/com/stuypulse/stuylib/streams/angles/filters/AMotionProfile.java +++ b/src/com/stuypulse/stuylib/streams/angles/filters/AMotionProfile.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/angles/filters/ARateLimit.java b/src/com/stuypulse/stuylib/streams/angles/filters/ARateLimit.java index 02d1f4b4..96f292f6 100644 --- a/src/com/stuypulse/stuylib/streams/angles/filters/ARateLimit.java +++ b/src/com/stuypulse/stuylib/streams/angles/filters/ARateLimit.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/BStream.java b/src/com/stuypulse/stuylib/streams/booleans/BStream.java index 2f284b92..2d2ae623 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/BStream.java +++ b/src/com/stuypulse/stuylib/streams/booleans/BStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/FilteredBStream.java b/src/com/stuypulse/stuylib/streams/booleans/FilteredBStream.java index f236deeb..b863504b 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/FilteredBStream.java +++ b/src/com/stuypulse/stuylib/streams/booleans/FilteredBStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/PollingBStream.java b/src/com/stuypulse/stuylib/streams/booleans/PollingBStream.java index a34cfd9b..cd885ab4 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/PollingBStream.java +++ b/src/com/stuypulse/stuylib/streams/booleans/PollingBStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/filters/BButton.java b/src/com/stuypulse/stuylib/streams/booleans/filters/BButton.java index b0199fd0..1671e5d0 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/filters/BButton.java +++ b/src/com/stuypulse/stuylib/streams/booleans/filters/BButton.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/filters/BButtonRC.java b/src/com/stuypulse/stuylib/streams/booleans/filters/BButtonRC.java index c1dc5d84..6c060790 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/filters/BButtonRC.java +++ b/src/com/stuypulse/stuylib/streams/booleans/filters/BButtonRC.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounce.java b/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounce.java index 13b9f31d..3eb002c0 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounce.java +++ b/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounce.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounceRC.java b/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounceRC.java index 750090c9..bce99d8e 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounceRC.java +++ b/src/com/stuypulse/stuylib/streams/booleans/filters/BDebounceRC.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/filters/BFilter.java b/src/com/stuypulse/stuylib/streams/booleans/filters/BFilter.java index c7cbf44e..e8e21f16 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/filters/BFilter.java +++ b/src/com/stuypulse/stuylib/streams/booleans/filters/BFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/booleans/filters/BFilterGroup.java b/src/com/stuypulse/stuylib/streams/booleans/filters/BFilterGroup.java index 07910017..1bf24c3e 100644 --- a/src/com/stuypulse/stuylib/streams/booleans/filters/BFilterGroup.java +++ b/src/com/stuypulse/stuylib/streams/booleans/filters/BFilterGroup.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/FilteredIStream.java b/src/com/stuypulse/stuylib/streams/numbers/FilteredIStream.java index 7a477af5..b2530226 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/FilteredIStream.java +++ b/src/com/stuypulse/stuylib/streams/numbers/FilteredIStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/IStream.java b/src/com/stuypulse/stuylib/streams/numbers/IStream.java index 0a9fdaa6..a30fefac 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/IStream.java +++ b/src/com/stuypulse/stuylib/streams/numbers/IStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/NumberStream.java b/src/com/stuypulse/stuylib/streams/numbers/NumberStream.java index 94adab15..5f9b1fd7 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/NumberStream.java +++ b/src/com/stuypulse/stuylib/streams/numbers/NumberStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/PollingIStream.java b/src/com/stuypulse/stuylib/streams/numbers/PollingIStream.java index 2ea613ee..32a7d4e8 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/PollingIStream.java +++ b/src/com/stuypulse/stuylib/streams/numbers/PollingIStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/Derivative.java b/src/com/stuypulse/stuylib/streams/numbers/filters/Derivative.java index 5c504d83..dca7fac6 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/Derivative.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/Derivative.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/HighPassFilter.java b/src/com/stuypulse/stuylib/streams/numbers/filters/HighPassFilter.java index 15f77618..c3049937 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/HighPassFilter.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/HighPassFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/IFilter.java b/src/com/stuypulse/stuylib/streams/numbers/filters/IFilter.java index 044b4a53..7d3b9dcd 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/IFilter.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/IFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/IFilterGroup.java b/src/com/stuypulse/stuylib/streams/numbers/filters/IFilterGroup.java index 29e7d533..380d7aac 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/IFilterGroup.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/IFilterGroup.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/LowPassFilter.java b/src/com/stuypulse/stuylib/streams/numbers/filters/LowPassFilter.java index 9434de4b..7f5750b3 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/LowPassFilter.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/LowPassFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/MotionProfile.java b/src/com/stuypulse/stuylib/streams/numbers/filters/MotionProfile.java index 40b07108..2610add5 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/MotionProfile.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/MotionProfile.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/RateLimit.java b/src/com/stuypulse/stuylib/streams/numbers/filters/RateLimit.java index 91b69ffd..919d54f9 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/RateLimit.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/RateLimit.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/numbers/filters/TimedMovingAverage.java b/src/com/stuypulse/stuylib/streams/numbers/filters/TimedMovingAverage.java index 4ecd2cf8..d6ff85d1 100644 --- a/src/com/stuypulse/stuylib/streams/numbers/filters/TimedMovingAverage.java +++ b/src/com/stuypulse/stuylib/streams/numbers/filters/TimedMovingAverage.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/FilteredVStream.java b/src/com/stuypulse/stuylib/streams/vectors/FilteredVStream.java index ed3136ac..870443d8 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/FilteredVStream.java +++ b/src/com/stuypulse/stuylib/streams/vectors/FilteredVStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/PollingVStream.java b/src/com/stuypulse/stuylib/streams/vectors/PollingVStream.java index 3bbc5ce0..b8d1d46e 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/PollingVStream.java +++ b/src/com/stuypulse/stuylib/streams/vectors/PollingVStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/VStream.java b/src/com/stuypulse/stuylib/streams/vectors/VStream.java index 2db44bae..e5312a16 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/VStream.java +++ b/src/com/stuypulse/stuylib/streams/vectors/VStream.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VClamp.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VClamp.java index 1681e196..ab23925c 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VClamp.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VClamp.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VDeadZone.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VDeadZone.java index 0acfd4d8..01bb5b1a 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VDeadZone.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VDeadZone.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VDerivative.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VDerivative.java index 5afe69f5..a73814e3 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VDerivative.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VDerivative.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VFilter.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VFilter.java index c5493a8b..c327ca76 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VFilter.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VFilterGroup.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VFilterGroup.java index 31427800..7252cf5e 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VFilterGroup.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VFilterGroup.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VHighPassFilter.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VHighPassFilter.java index 660a2005..eff798c5 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VHighPassFilter.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VHighPassFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VLowPassFilter.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VLowPassFilter.java index c6be2c89..08a046f4 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VLowPassFilter.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VLowPassFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VMotionProfile.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VMotionProfile.java index e600c6ab..d0c354e1 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VMotionProfile.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VMotionProfile.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VRateLimit.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VRateLimit.java index 87274f5d..34efe20c 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VRateLimit.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VRateLimit.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/VTimedMovingAverage.java b/src/com/stuypulse/stuylib/streams/vectors/filters/VTimedMovingAverage.java index bf46e27e..8bf20034 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/VTimedMovingAverage.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/VTimedMovingAverage.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/streams/vectors/filters/XYFilter.java b/src/com/stuypulse/stuylib/streams/vectors/filters/XYFilter.java index 5fd96114..153812da 100644 --- a/src/com/stuypulse/stuylib/streams/vectors/filters/XYFilter.java +++ b/src/com/stuypulse/stuylib/streams/vectors/filters/XYFilter.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/util/AngleVelocity.java b/src/com/stuypulse/stuylib/util/AngleVelocity.java index 74c86b71..d3a7a2ee 100644 --- a/src/com/stuypulse/stuylib/util/AngleVelocity.java +++ b/src/com/stuypulse/stuylib/util/AngleVelocity.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/util/Conversion.java b/src/com/stuypulse/stuylib/util/Conversion.java index 07e3eda3..8c7f2705 100644 --- a/src/com/stuypulse/stuylib/util/Conversion.java +++ b/src/com/stuypulse/stuylib/util/Conversion.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/src/com/stuypulse/stuylib/util/StopWatch.java b/src/com/stuypulse/stuylib/util/StopWatch.java index dbaf2a57..24824a40 100644 --- a/src/com/stuypulse/stuylib/util/StopWatch.java +++ b/src/com/stuypulse/stuylib/util/StopWatch.java @@ -1,4 +1,4 @@ -/* Copyright (c) 2024 StuyPulse Robotics. All rights reserved. */ +/* Copyright (c) 2025 StuyPulse Robotics. All rights reserved. */ /* This work is licensed under the terms of the MIT license */ /* found in the root directory of this project. */ diff --git a/vendordeps/WPILibNewCommands.json b/vendordeps/WPILibNewCommands.json index 3391721a..fc16e5d0 100644 --- a/vendordeps/WPILibNewCommands.json +++ b/vendordeps/WPILibNewCommands.json @@ -3,7 +3,7 @@ "name": "WPILib-New-Commands", "version": "1.0.0", "uuid": "111e20f7-815e-48f8-9dd6-e675ce75b266", - "frcYear": "2024", + "frcYear": "2025", "mavenUrls": [], "jsonUrl": "", "javaDependencies": [