mirror of
				https://github.com/pragma-/pbot.git
				synced 2025-10-31 22:57:23 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			25 lines
		
	
	
		
			505 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			505 B
		
	
	
	
		
			Perl
		
	
	
	
	
	
| # File: VERSION.pm
 | |
| # Author: pragma_
 | |
| #
 | |
| # Purpose: Keeps track of bot version.
 | |
| 
 | |
| # This Source Code Form is subject to the terms of the Mozilla Public
 | |
| # License, v. 2.0. If a copy of the MPL was not distributed with this
 | |
| # file, You can obtain one at http://mozilla.org/MPL/2.0/.
 | |
| 
 | |
| # $Id$
 | |
| 
 | |
| package PBot::VERSION;
 | |
| 
 | |
| use strict;
 | |
| use warnings;
 | |
| 
 | |
| # These are set automatically by the build/commit script
 | |
| use constant {
 | |
|   BUILD_NAME     => "PBot",
 | |
|   BUILD_REVISION => 1582,
 | |
|   BUILD_DATE     => "2017-08-05",
 | |
| };
 | |
| 
 | |
| 1;
 | 
