Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
deepika-u committed Nov 27, 2023
1 parent 3e58a3b commit 1c50f2e
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,10 @@
*******************************************************************************/
package org.eclipse.swt.internal;

import java.io.File;
import java.io.IOException;
import java.io.InputStream;
import java.net.JarURLConnection;
import java.net.URL;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.StandardCopyOption;
import java.util.jar.Attributes;
import java.io.*;
import java.net.*;
import java.nio.file.*;
import java.util.jar.*;

public class Library {

Expand All @@ -35,12 +30,12 @@ public class Library {
/**
* SWT Minor version number (must be in the range 0..999)
*/
static int MINOR_VERSION = 963;
static int MINOR_VERSION = 964;

/**
* SWT revision number (must be >= 0)
*/
static int REVISION = 5;
static int REVISION = 1;

/**
* The JAVA and SWT versions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
#*******************************************************************************

maj_ver=4
min_ver=963
rev=5
comma_ver=4,963,5,0
min_ver=964
rev=1
comma_ver=4,964,1,0
2 changes: 1 addition & 1 deletion bundles/org.eclipse.swt/Eclipse SWT/common/version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version 4.963
version 4.964

0 comments on commit 1c50f2e

Please sign in to comment.